create database 資料庫名
create table 表名 (
欄位名 int(11) auto_increment,
欄位名 varchar(30) ,
欄位名 float ,
欄位名 int(11) ,
primary key (id) //設定主鍵為id
) default charset=utf8; //設定字符集為utf8
全部查詢
select * from 表名
查詢多少條資料
select count(*) from 表名
分頁查詢
select * from 表名 limit 0,5
update 表名 set 欄位名 = 111 where id = 1
delete from 欄位名 where id = 1
nsert into 表名 values (null, 『測試』, 111, 222)
pk 主鍵
constraint primary key
uk 唯一約束
constraint unique key
df 約束預設
constrint default for
ck 檢查約束
constraint check()
fk 主外來鍵關係
constraint foreign references
MySQL資料庫增刪改查
注意 mysql中不區分大小寫 一 新增 新增資料到一張表中 語法 inser into 表名 列名 values 值列表 insert into students id,name values 16408100126 zzh 注意 新增資料時如果不寫欄位名,將會預設向所有欄位中新增值,確保所有no...
Mysql資料庫增刪改查
1.建立使用 使用資料庫 use work test 建立資料庫 create database work test create database ifnot exists work test character set gbk 建立表 create table dept id int prima...
資料庫 Oracle 增刪改查(基礎)
select 欄位名 from 表名 where 條件 group by 欄位名 order by create table 表名 欄位名 資料型別 長度 欄位名 資料型別 長度 建立表 create table 表名 as select.拿來當備份 insert into 表名 欄位名1,欄位名2...