1. 程式人生 > >Oracle資料庫的使用操作

Oracle資料庫的使用操作

1、為選出的資料加一列固定值

     

select  ‘kk’ as name from table;
2、在選擇出的資料中進行判斷,如果為1 則輸出男性,如果為2 則輸出女性

select (case when sex=1 then '男' when sex='2' then '女' end)as sex from table;
3.在一個區間內進行取值

where value between 1 and 3

4.將表2的資料拷貝到表1裡面,如果表1有則更新,沒有就插入

  

merge into 表1 t1 
      using(select id from 表2)t2
      on(t2.id=t1.id)
      when matched then
      update set t1.name=t2.name
      when not matched then
      insert(t1.name)values(t2.name)