createdatabase 資料庫名 charset=utf8;
dropdatabase 資料庫名;
use 資料庫名;
selectdatabase();
show tables;
createtable
表名(列及型別);
如:create
table
students(
id int auto_increment primary
key,
sname
varchar(10) not
null
);
altertable 表名 add
|change|
drop
列名 型別;
如:alter
table students add birthday datetime;
droptable 表名;
desc 表名;
rename table 原表名 to 新錶名;
show createtable
'表4名
';
select*from 表名
全列插入:insertinto 表名 values
(...)
預設插入:
insert
into 表名(列1,...) values
(值1,...)
同時插入多條資料:
insert
into 表名 values
(...),(...)...;
或insert
into 表名(列1,...) values(值1,...),(值1,...)...;
update 表名 set 列1=值1,... where 條件
刪除
deletefrom 表名 where 條件
altertable students add isdelete bit
default0;
如果需要刪除則
update students isdelete=
1where ...;
mysql增刪改查效果 mysql增刪改查
檢視所有資料庫 mysql show databases 建立乙個庫ghd並指定字符集為utp8 mysql create database ghd charset utf8 檢視mysql支援的字符集 mysql show char set 建立乙個表,並設定id為主鍵 create table ...
mysql增刪改查擴充套件 MySQL增刪改查
1 插入 insert 1 insert into 表名 values 值1 值2 例子 insert into t1 values zengsf 23 fengshao 22 2 insert into 表名 欄位1,values 值1 例子 insert into t1 name values ...
mysql建刪改查 MySQL增刪改查
登入mysql mysql u root p 密碼 建立使用者 mysql insert into mysql.user host,user,password values localhost test password 1234 這樣就建立了乙個名為 test 密碼為 1234 的使用者。注意 此...