1.給某個表新增主鍵:alter table t_check_wk add( constraint acount_no primary key(acount_no))
2.刪除某個表的主鍵:alter table t_temp_wk drop constraint acount_no
3.重新命名某個字段:alter table 表名
rename column 原欄位名 to 新欄位名 ;
4.新增欄位的語法:alter table tablename add (column datatype [default value][null/not null],….);
5.修改欄位的語法:alter table tablename modify (column datatype [default value][null/not null],….);
6.刪除欄位的語法:alter table tablename drop (column);
7.重新命名表名:alter tabletable_namerename tonew_table_name;
8.建立帶主鍵的表:create table student ( studentid int primary key not null, studentname varchar(8), age int);
9表空間:create tablespace static_db01 logging datafile 'e:\tablespace\luntan2.ora' size 50m extent management local segment space management auto
資料庫常用的sql語句
1.給某個表新增主鍵 alter table t check wk add constraint acount no primary key acount no 2.刪除某個表的主鍵 alter table t temp wk drop constraint acount no 3.重新命名某個字段...
資料庫管理常用sql語句
一 creating a database 1 以系統管理員使用者登入。sqlplus as sysdba 2 啟動資料庫導nomount狀態。sql startup nomount 3 執行建立資料庫語句。sql create database invrep controlfile reuse m...
oracle常用資料庫sql語句
建立表空間 create bigfile tablespace 表空間名稱 datafile 表空間路徑 size 100m autoextend on extent management local autoallocate 建立使用者 create user 使用者名稱 identified b...