常用sql總結

2021-09-01 18:56:50 字數 357 閱讀 6995

1 查詢表名 select table_name from user_tables where table_name like 'spm%' or table_name like 'os%'; 

2 比對 兩個使用者中的表的字段,長度,注釋等的差異 :在plsql中 tools-compare user objects ,連線目標的庫,進行比對 

3 在plsql中 檢視配置監聽的配置檔案位置:help-support info -tns file

4 匯出指定使用者下資料:exp payment/[email protected]_ecom12580 file=d:\d.dump owner=(payment),如果客戶端和服務端版本不一致會報錯

常用SQL操作總結

例如 按照 department id 查詢 employees 員工表 和 departments 部門表 的資訊。craete table truncate table alter table reanme.to drop table 操作完以後,自動 commit 所以,rollback 對其...

常用Sql語句總結

建立資料庫 createdatabase onlineshop useonlineshop 建立分類表 createtablecategory categoryidintidentity 1,1 primarykey,主鍵,自增 name nvarchar 50 notnull 建立商品表 crea...

常用SQL總結(面試)

分頁查詢 start是頁碼,pagesize是每頁顯示的條數。select from table limit start 1 pagesize,pagesize 分組查詢 select 查詢列表 from 表 where 篩選條件 group by 分組的字段 order by 排序的字段 笛卡爾積...