show
databases;
use 資料庫名;
select
database();
create
database 資料庫名 charset=utf8;
例:create
database python charset=utf8;
drop
database 資料庫名;
例:drop
database python;
show
tables;
desc 表名;
create
table table_name(
column1 datatype contrai,
column2 datatype,
column3 datatype,
.....
columnn datatype,
primary key(one or more columns)
);
例:建立班級表
create
table classes(
idintunsigned auto_increment primary key
notnull,
name
varchar(10)
);
例:建立學生表
create
table students(
idintunsigned primary key auto_increment not
null,
name
varchar(20) default
'', age tinyint unsigned
default
0, height decimal(5,2),
gender enum('男','女','人妖','保密'),
cls_id int
unsigned
default0)
alter
table 表名 add 列名 型別;
例:alter
table students add birthday datetime;
alter
table 表名 change 原名 新名 型別及約束;
例:alter
table students change birthday birth datetime not
null;
alter
table 表名 modify 列名 型別及約束;
例:alter
table students modify birth date
notnull;
alter
table 表名 drop 列名;
例:alter
table students drop birthday;
drop
table 表名;
例:drop
table students;
show
create
table 表名;
例:show
create
table classes;
curd的解釋: 代表建立(create)、更新(update)、讀取(retrieve)和刪除(delete)
select * from 表名;
例:select * from classes;
select 列1,列2,... from 表名;
例:select
id,name
from classes;
格式:insert [into] tb_name [(col_name,...)] (,...),(...),...
insert
into 表名 values(...)
例:insert
into students values(0,』郭靖『,1,'蒙古','2016-1-2');
insert
into 表名(列1,...) values(值1,...)
例:insert
into students(name,hometown,birthday) values('黃蓉','桃花島','2016-3-2');
insert
into 表名 values(...),(...)...;
例:insert
into classes values(0,'python1'),(0,'python2');
insert
into 表名(列1,...) values(值1,...),(值1,...)...;
例:insert
into students(name) values('楊康'),('楊過'),('小龍女');
格式:updatetbnameset col1= [,col2=]...[where 條件判斷]
update 表名 set 列1=值1,列2=值2... where 條件
例:update students set gender=0,hometown='北京'
where
id=5;
delete from tbname [where 條件判斷]
delete
from 表名 where 條件
例:delete
from students where
id=5;
update students set isdelete=1
where
id=1;
mysqldump –uroot –p 資料庫名 > python.sql;
按提示輸入mysql的密碼
mysql -uroot –p 新資料庫名 < python.sql
根據提示輸入mysql密碼 Mysql 二 資料庫基本操作
檢視當前使用者 select host,user from mysql.user 1.mysql 建立使用者 create user test identified by 123456 2.授權遠端登陸 grant all privileges on to test identified by 12...
PDO操作mysql資料庫 二
從 mysql 資料庫讀取資料 server localhost user root pwd 123456 db mydb trycatch pdoexception exception echo exception getmessage conn null mysql where 子句 sql語句...
mysql資料庫核對 Mysql資料庫操作總結
1 部署資料庫服務 mariadb yum install y mariadb 運算元據庫命令 mariadb server 啟動資料庫服務 systemctl startmariadb 建立資料庫 create database 資料庫名 建立好資料庫之後可以檢視資料庫是否建立 show data...