Mysql學習隨筆--4
阿新 • • 發佈:2020-12-07
SQL語句規則
操作資料夾
建立資料庫
create database db2;
create database db2 default charset utf8;
檢視資料庫資訊
show databases;
刪除資料庫
drop database db2;
操作檔案
查看錶格
show tables;
建立表格
create table t1(id int,name char(10)) default charset=utf8;
create table t1(id int,name char(10))engine=innodb default charset=utf8;
create table t3(id int auto_increment,name char(10))engine=innodb default charset=utf8;
列名 型別 null,
列名 型別 not null,
列名 型別 not null auto_increment primary key,
id int,
name char(10)
)engine=innodb default charset=utf8;
# innodb 支援事務,原子性操作
# myisam myisam
auto_increment 表示:自增
primary key: 表示 約束(不能重複且不能為空); 加速查詢
not null: 是否為空
操作檔案中內容
插入:
insert into t1(id,name) values(1,'alex');
delete from t1 where id<6
where:條件
修改:
update t1 set age=18;
update t1 set age=18 where age=17;
檢視:
select * from t1;