📜  oracle SQL 开发人员 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:18.089000             🧑  作者: Mango

代码示例2
Select
  REGEXP_SUBSTR(Column1,'\Name=([^.]+)',1,1,null,1) as Name
, regexp_substr(Column1,'\Branch Number=([^.]+)',1,1,null,1) as Branch_Number
, regexp_substr(Column1,'\Type of Event=([^.]+)',1,1,null,1) as Type_of_Event
, regexp_substr(Column1,'\Date of Event=([^.]+)',1,1,null,1) as Date_of_Event

From table1

Where...