您好,登錄后才能下訂單哦!
這篇文章主要介紹MySQL怎么使用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
一、SQL速成
以下是一些重要的SQL快速參考,有關(guān)SQL的語法和在標準SQL上增加的特性,請查詢MySQL手冊。
1.創(chuàng)建表
表是的最基本元素之一,表與表之間可以相互獨立,也可以相互關(guān)聯(lián)。創(chuàng)建表的基本語法如下:
create table table_name
(column_name datatype {identity |null|not null},
…)
其中參數(shù)table_name和column_name必須滿足用戶數(shù)據(jù)庫中的識別器(identifier)的要求,參數(shù)datatype是一個標準的SQL類型或由用戶數(shù)據(jù)庫提供的類型。用戶要使用non-null從句為各字段輸入數(shù)據(jù)。
create table還有一些其他選項,如創(chuàng)建臨時表和使用select子句從其他的表中讀取某些字段組成新表等。還有,在創(chuàng)建表是可用PRIMARY KEY、KEY、INDEX等標識符設(shè)定某些字段為主鍵或索引等。
書寫上要注意:
在一對圓括號里的列出完整的字段清單。
字段名間用逗號隔開。
字段名間的逗號后要加一個空格。
最后一個字段名后不用逗號。
所有的SQL陳述都以分號";"結(jié)束。
例:
> CREATE TABLE test (blob_col BLOB, index(blob_col(10)));
2.創(chuàng)建索引
索引用于對數(shù)據(jù)庫的查詢。一般數(shù)據(jù)庫建有多種索引方案,每種方案都精于某一特定的查詢類。索引可以加速對數(shù)據(jù)庫的查詢過程。創(chuàng)建索引的基本語法如下:
create index index_name
on table_name (col_name[(length)],... )
例:
mysql> CREATE INDEX part_of_name ON customer (name(10));
3.改變表結(jié)構(gòu)
在數(shù)據(jù)庫的使用過程中,有時需要改變它的表結(jié)構(gòu),包括改變字段名,甚至改變不同數(shù)據(jù)庫字段間的關(guān)系??梢詫崿F(xiàn)上述改變的命令是alter,其基本語法如下:
alter table table_name alter_spec [, alter_spec ...]
例:
mysql> ALTER TABLE t1 CHANGE a b INTEGER;
4.刪除數(shù)據(jù)對象
很多數(shù)據(jù)庫是動態(tài)使用的,有時可能需要刪除某個表或索引。大多數(shù)數(shù)據(jù)庫對象可以下面的命令刪除:
drop object_name
mysql> DROP TABLE tb1;
5.執(zhí)行查詢
查詢是使用最多的SQL命令。查詢數(shù)據(jù)庫需要憑借結(jié)構(gòu)、索引和字段類型等因素。大多數(shù)數(shù)據(jù)庫含有一個優(yōu)化器(optimizer),把用戶的查詢語句轉(zhuǎn)換成可選的形式,以提高查詢效率。
值得注意的是MySQL不支持SQL92標準的嵌套的where子句,即它只支持一個where子句。其基本語法如下:
SELECT [STRAIGHT_JOIN] [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [HIGH_PRIORITY] [DISTINCT | DISTINCTROW | ALL]
select_expression,... [INTO {OUTFILE | DUMPFILE} file_name export_options] [FROM table_references [WHERE where_definition] [GROUP BY col_name,...] [HAVING where_definition] [ORDER BY {unsigned_integer | col_name | formula} [ASC | DESC] ,...] [LIMIT [offset,] rows] [PROCEDURE procedure_name] ]
其中where從句是定義選擇標準的地方,where_definition可以有不同的格式,但都遵循下面的形式:
字段名操作表達式
字段名操作字段名
在第一種形式下,標準把字段的值與表達式進行比較;在第二種形式下,把兩個字段的值進行比較。根據(jù)所比較的數(shù)據(jù)類型,search_condition中的操作可能選以下幾種:
= 檢查是否相等
??!= 檢查是否不等
> (或>=) 檢查左邊值是否大于(或大于等于)右邊值
< (或<=) 檢查左邊值是否小于(或小于等于)右邊值 [not] between 檢查左邊值是否在某個范圍內(nèi) [not] in 檢查左邊是否某個特定集的成員 [not] like 檢查左邊是否為右邊的子串
is [not] null 檢查左邊是否為空值
在這里,可以用通配符_代表任何一個字符,%代表任何字符串。使用關(guān)鍵字、和可以生成復(fù)雜的詞,它們運行檢查時使用布爾表達式的多重標準集。
例:
mysql> select t1.name, t2.salary from employee AS t1, info AS t2 where t1.name = t2.name;
mysql> select college, region, seed from tournament
ORDER BY region, seed;
mysql> select col_name from tbl_name WHERE col_name > 0;
6.修改表中數(shù)據(jù)
在使用數(shù)據(jù)庫過程中,往往要修改其表中的數(shù)據(jù),比如往表中添加新數(shù)據(jù),刪除表中原有數(shù)據(jù),或?qū)Ρ碇性袛?shù)據(jù)進行更改。它們的基本語法如下:
數(shù)據(jù)添加:
insert [into] table_name [(column(s))]
values (expression(s))
例:
mysql> INSERT INTO tbl_name (col1,col2) VALUES(15,col1*2);
數(shù)據(jù)刪除:
delete from table_name where search_condition
數(shù)據(jù)更改:
update table_name
set column1=expression1,
column2=expression2,…
where search_condition
7.數(shù)據(jù)庫切換
當存在多個數(shù)據(jù)庫時,可以用下面的命令定義用戶想使用的數(shù)據(jù)庫:
use database_name
8.統(tǒng)計函數(shù)
SQL有一些統(tǒng)計函數(shù),它們對于生成數(shù)據(jù)表格很有幫助。下面介紹幾個常用的統(tǒng)計函數(shù):
sum (exepression) 計算表達式的和
avg (exepression) 計算表達式的平均值
count (exepression) 對表達式進行簡單的計數(shù)
count (*) 統(tǒng)計記錄數(shù)
max (exepression) 求最大值
min (exepression) 求最小值
其中exepression為任何有效的SQL表達式,它可以是一個或多個記錄,也可以是別的SQL函數(shù)的組合。
二、MySQL使用導(dǎo)引
1.運用MySQL建立新數(shù)據(jù)庫
在shell下運行:
$>mysqladmin create database01
Database "database01" created.
2.啟動MySQL
在shell下運行:
$>mysql
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 22 to server version: 3.21. 29a-gamma-debug
Type help for help.
3.更換數(shù)據(jù)庫
mysql>use database01
database changed.
4.創(chuàng)建表
mysql>create table table01 (field01 integer, field02 char(10));
Query OK, 0 rows affected (0.00 sec)
5.列出表清單
mysql>show tables;
Tables in database01
Table01
table02
6.列出表中的字段清單
mysql>show columns from table01;
Field Type Null Key Default Extra
field01 int(11) YES
field02 char(10) YES
7.表的數(shù)據(jù)填寫
插入數(shù)據(jù)
mysql>insert into table01 (field01, field02) values (1, first);
Query OK, 1 row affected (0.00 sec)
8.字段的增加
...一次一個字段
mysql>alter table table01 add column field03 char(20);
Query OK, l row affected (0.04 sec)
Records: 1 Duplicates: 0 Warnings: 0
...一次多個字段
mysql>alter table table01 add column field04 date, add column field05 time;
Query OK, l row affected (0.04 sec)
Records: 1 Duplicates: 0 Warnings: 0
注意:每一列都必須以"add column"重新開始。
它運行了嗎?讓我們看看。
mysql>select * from table01;
field01 field02 field03 field04 field05
1 first NULL NULL NULL
二、MySQL使用導(dǎo)引
1.運用MySQL建立新數(shù)據(jù)庫
在shell下運行:
$>mysqladmin create database01
Database "database01" created.
2.啟動MySQL
在shell下運行:
$>mysql
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 22 to server version: 3.21. 29a-gamma-debug
Type help for help.
3.更換數(shù)據(jù)庫
mysql>use database01
database changed.
4.創(chuàng)建表
mysql>create table table01 (field01 integer, field02 char(10));
Query OK, 0 rows affected (0.00 sec)
5.列出表清單
mysql>show tables;
Tables in
以上是“MySQL怎么使用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。