-- 向表中新增主鍵約束
alter
table retail_shop_follow_goods
addconstraint pk_retail_shop_follow_goods primary
key(follow_goods_id)
;-- 新增外來鍵
alter
table retail_shop_follow_goods
addconstraint fk_retail_shop_id foreign
key(retail_shop_id)
references retail_shop (retail_shop_id)
;-- 刪除外來鍵
alter
table retail_shop_follow_goods
drop
constraint fk_retail_shop_id;
誤刪除表資料
/*這裡只是查出被刪之前的資料,如果要恢復,則把查詢出來的資料匯出為sql,然後找到原表,重新匯入資料即可*/
--閃回到15分鐘前
select
*from st_pos_goods_detail as
oftimestamp
(systimestamp -
interval
'15'
minute
)where goods_qty =0;
--這裡可以使用day、second、month替換minute,例如:
select
*from st_pos_goods_detail as
oftimestamp
(systimestamp -
interval
'2'day
);
檢視某個字段增加時間
select
*from user_tab_columns where column_name =
'retail_shop_staff_id'
and table_name =
'glb_goods_batch'
;
oracle使用記錄
1.登入 第一種 sqlplus 使用者名稱 密碼 例項 as 角色 第二種 sqlplus 輸入使用者名稱和密碼 第三種 遠端dos登入 telnet使用前提 控制面板 程式 開啟或關閉windows功能 勾選telnet客戶端 telnet ip 埠 第四種 遠端登入 tnsnames配置資料庫...
oracle部分使用記錄
本文僅個人學習記錄使用,可能存在部分問題。資料庫為11g 1 建立陣列型別 type array type is varray 100 of varchar2 100 2 多個字段約束限制 alter table table nameadd constraint constraint name un...
記錄一次oracle使用記錄
使用oracle資料庫的專案到我這邊,需要修改,咱雖然 學過 oracle,但那畢竟已經過去了。哈哈。使用database configuration assistant 建立資料庫,建立快完的時候,說我沒有監聽啥的,然後 通過 net manager 建立了,qizhong1 其中選中的那個就是建...