一、 數(shù)據(jù)庫登錄
mysql -uroot -p
二.、退出數(shù)據(jù)庫
quit 和 exit或ctrl + d
三、數(shù)據(jù)庫操作
1. 查看所有數(shù)據(jù)庫
show databases;
2. 查看當(dāng)前使用的數(shù)據(jù)庫
select database();
3. 使用數(shù)據(jù)庫
use 數(shù)據(jù)庫名;
4. 創(chuàng)建數(shù)據(jù)庫
create database 數(shù)據(jù)庫名 charset=utf8;
5. 刪除數(shù)據(jù)庫
drop database 數(shù)據(jù)庫名;
6.查看當(dāng)前數(shù)據(jù)庫中所有表
show tables;
7.查看表結(jié)構(gòu)
desc 表名;
8.創(chuàng)建表結(jié)構(gòu)的語法.
create table 表名(
字段名稱 數(shù)據(jù)類型 可選的約束條件);
9.修改表-添加字段
alter table 表名 add 列名 類型;
alter table students add birthday datetime;
10.修改表-修改字段-重命名
alter table 表名 change 原名 新名 類型及約束;
11. 修改表-修改字段不重命名
alter table 表名 modify 列名 類型及約束;
12.修改表-刪除字段
alter table 表名 drop 列名;
13.刪除表
drop table 表名;
14.查看表的創(chuàng)建語句-詳細(xì)過程
show create table 表名;
四、表數(shù)據(jù)的操作
1.增加
insert into 表名 values (...)linux常用命令,
insert into 表名 (列1,...) values(值1,...)
2.刪除
delete from 表名 where 條件
3.修改
update 表名 set 列1=值1,列2=值2... where 條件
4.查找
select * from 表名;
select 列1,列2,... from 表名;
備注:MySQL的常用類型 bit-int-short-tinyint-x unsigned -decimal char-varchar enum
sql server中有5種約束:主鍵約束(primary key constraint)、默認(rèn)約束(default constraint)、檢查約束(check constraint)、唯一性約束(unique constraint)、外鍵約束(foreign key constraint).。主鍵:區(qū)分記錄中不同記錄的唯一字段,該字段賦予主鍵,稱之主鍵約束(唯一、非空)。5、 主鍵和外鍵的區(qū)別答:主鍵在本表中是唯一的、不可唯空的,外鍵可以重復(fù)可以唯空。
五、其他操作
1.排序:order by
select * from 表名 where 列1 order by 列2 asc|desc;
asc從小到大排列l(wèi)inux常用命令,即升序;desc從大到小排序,即降序
2.分頁:limit
( )9、students是數(shù)據(jù)庫中一個表,select最簡單查詢語句,select * from students,忽略了where選項,將返回所有行和列。 48. 查詢 company 表中的所有非空 company_name 信息, 以下語句正確的是( 擇一項) a) select company_name from company where b) select company_name from company where c) select company_name from company where d) select company_name from company where 49. 關(guān)于聚合函數(shù),以下說法錯誤的是( company_name 。"&server.mappathselect a,b,c from a where a in 顯示文章最后時間select a.title,a.username,b.adddate from table a, adddate from table where table.title=a.title) b外連接查詢select a.a, a.b, a.c, b.c, b.d, b.f from a left out join b on a.a = b.c在線視圖查詢 t where t.a > 1。