Oralce常用語句

2021-08-14 02:20:33 字數 1275 閱讀 6950

1.查主鍵

select cu.* from user_cons_columns cu, user_constraints au 

where cu.constraint_name = au.constraint_name

and au.constraint_type = 'p' and au.table_name = 'table_name'

2.刪除表資料(迅速)

truncate table table_name;

3.查詢編碼問題(當前庫)

select userenv('language') from dual;

4.查詢所有table的名字,以及剪下字串

select t.table_name from user_tables t;
select substr(t.table_name,2) from user_tables t;(去掉第乙個字元)

5.查詢建表語句

select dbms_metadata.get_ddl('table','table_name') from dual;

6.建表語句

修改表名,表空間

create table table_name

( "fab_month" date not null enable,

"mdl_id_fk" varchar2(30) not null enable,

…………(複製)

tablespace "m1mes_tbs_dat" enable

) segment creation immediate

pctfree 10 pctused 40 initrans 1 maxtrans 255

nocompress logging

storage(initial 65536 next 1048576 minextents 1 maxextents 2147483645

pctincrease 0 freelists 1 freelist groups 1

buffer_pool default flash_cache default cell_flash_cache default)

tablespace "m1mes_tbs_dat"

mysql常用語句 MySQL常用語句

create table student id int primary key auto increment comment 學號 name varchar 200 comment 姓名 age int comment 年齡 comment 學生資訊 修改表注釋 alter table studen...

php mysql 常用語句 mysql常用語句

一 修改mysql使用者密碼 mysql h localhost u root p 命令列登入 update user set password password 123456 where user root 二 資料庫操作 show databases 顯示資料庫 create database ...

sql常用語句

use myoa select from delete from department where departmentid 1 insert department departmentid,departmentname values 1,技術部 update department set depa...