1、登入
mysql -h 主機名 -u使用者名稱 -p密碼
c:/
> mysql -h 192.168
.1.45
-u root -p root
2、顯示所有資料庫
mysql >
show
databases
;
3、進入指定資料庫
mysql>
use mysql
4、檢視庫中所有表
mysql>
show
tables
from mysql;
mysql>
show
tables
;
5、檢視當前庫
mysql>
select
database()
;
6、檢視版本
c:/mysql -version
c:/mysql -v //進入mysql客戶端之前
mysql>
select version();
//進入mysql客戶端後
7、建立乙個資料庫
mysql >
create
database spark;
8、建立乙個表
create table 表名(資料名稱 型別,資料名稱 型別,資料名稱 型別);
mysql >
create
table customer(id varchar(30
),age int
, name varchar(30
),birthday date
);
9、檢視表結構
mysql >
desc customer;
10、檢視表
select * from 表名;
mysql >
select
*from customer;
11、查詢特定列
select 資料名稱,資料名稱 from 表名;
mysql >
select id,name,*** from student
12、查詢資料並進行過濾
select 資料名稱,資料名稱 from 表名 where 過濾條件;
mysql >
select id,name,*** from student where id =
>
1003
;
13、運算子查詢
mysql >
select id,name,*** from student where age >=
18and age <=35;
mysql >
select id,name,*** from student where age between
18and
35;
14、查詢變種
mysql >
select
*from student where age =
18or age =
35or age =
23//條件查詢
mysql >
select
*from student where age in(18
,23,35
);//條件查詢
mysql >
select
*from student where name like
'%小%'
;//模糊查詢
mysql >
select
*from student where name like
'_明%'
;//模糊查詢
mysql >
select
*from student where email is
null
;//條件查詢
mysql >
select
*from student where email is
notnull
;//條件查詢
mysql >
select
*from student order
by age ;
//公升序,排序查詢
mysql >
select
*from student order
by age desc
;//降序,排序查詢
15、插入資料
insert into student (要插入資料的資料名) values (資料);
mysql >
insert
into student(id,name)
values
(1001
,'小明');
//varchar或者date型的資料要用單引號括起來。
16、修改表
update 表名 set 修改的內容 where 在什麼條件下;
mysql >
update student set name=
'小紅'
where id =
1001
;
17、刪除表記錄
delete from 表名 where 刪除的限制條件;
mysql >
delete
from student where id =
1001
;
18、刪除表
drop table 表名;
mysql >
drop
table customer;
19、刪除資料庫
drop database 資料庫名;
mysql>
drop
database girls;
20、退出
mysql >
exit
;ctrl+c
quit;
mysql常用語句 MySQL常用語句
create table student id int primary key auto increment comment 學號 name varchar 200 comment 姓名 age int comment 年齡 comment 學生資訊 修改表注釋 alter table studen...
php mysql 常用語句 mysql常用語句
一 修改mysql使用者密碼 mysql h localhost u root p 命令列登入 update user set password password 123456 where user root 二 資料庫操作 show databases 顯示資料庫 create database ...
MySQL常用語句
and和or可以混用,and比or具有更高的優先順序,但盡量使用圓括號區分 自動過濾重複的資料owner,關鍵字distinct select distinct owner from pet 按照生日公升序排列,關鍵字order by select name,birth from pet order...