sql語句學習總結

java小白寫部落格發表於2020-10-12

1、建立資料庫語句
create database 庫名
2、刪除資料庫語句
drop database 庫名
3、建立表
create table 表名(欄位,主鍵設定)
根據已有的表建立新表(複製舊錶的資料到新表)
create table 新表名 like 舊錶名
creata table 新表名 as select 新表欄位 from 舊錶名 definiton only
4、刪除表
drop table 表名
5、增加一個列
Alter table 表名 add column 列名 type
列增加後不能刪除 DB2中列加上後資料型別不能改變,唯一改變的是增加varchar型別的長度
6、新增主鍵
Alter table 表名 add primary key(列名)
7、刪除主鍵
Alter table 表名 drop primary key(列名)
8、建立索引
create [unique] index idxname on tabname(欄位)
刪除索引
drop index idxname
9、建立檢視
create view viewname as select statement
刪除檢視
drop view viewname
10、基本資料庫語句
選擇:select * from 列名 where 範圍
插入:insert into 列名(欄位名) values(值)
刪除:delete from 列名 where 條件
範圍更新:update 列名 set 欄位=“值” where 範圍
排序:select * from 列名 order by 欄位[desc]
查詢:select * from

相關文章