一、SQL速成
結(jié)構(gòu)查詢語言(SQL)是用于查詢關(guān)系數(shù)據(jù)庫的標準語言,它包括若干關(guān)鍵字和一致的語法,便于數(shù)據(jù)庫元件(如表、索引、字段等)的建立和操縱。
以下是一些重要的SQL快速參考,有關(guān)SQL的語法和在標準SQL上增加的特性,請查詢MySQL手冊。
1.創(chuàng)建表
表是數(shù)據(jù)庫的最基本元素之一,表與表之間可以相互獨立,也可以相互關(guān)聯(lián)。創(chuàng)建表的基本語法如下:
create table table_name
(column_name data無效 {identity |null|not null}, …)
其中參數(shù)table_name和column_name必須滿足用戶數(shù)據(jù)庫中的識別器(identifier)的要求,參數(shù)data無效是一個標準的SQL類型或由用戶數(shù)據(jù)庫提供的類型。用戶要使用non-null從句為各字段輸入數(shù)據(jù)。
create table還有一些其他選項,如創(chuàng)建臨時表和使用select子句從其他的表中讀取某些字段組成新表等。還有,在創(chuàng)建表是可用PRIMARY KEY、KEY、INDEX等標識符設(shè)定某些字段為主鍵或索引等。
書寫上要注意:
在一對圓括號里的列出完整的字段清單。
字段名間用逗號隔開。
字段名間的逗號后要加一個空格。
最后一個字段名后不用逗號。
所有的SQL陳述都以分號";"結(jié)束。
例:
mysql> CREATE TABLE test (blob_col BLOB, index(blob_col(10)));
二、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
無效 '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 無效 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
9.多行命令輸入
MySQL命令行界面允許把陳述作為一行輸入,也可以把它展開為多行輸入。這兩者之間并沒有語法上的區(qū)別。使用多行輸入,你可以將SQL陳述
一步步分解,從而使你更容易理解。
在多行方式下,注釋器把每一行都添加到前面的行后,直到你用分號";"來結(jié)束這個SQL陳述。一旦鍵入分號并按回車鍵,這個陳述即被執(zhí)行。
下面的例子是同一個嚴格的SQL陳述的兩種輸入方法:
單行輸入
Mysql>create table table33 (field01 integer, field02 char(30));
多行輸入
Mysql>create table table33
->(field01
->integer,
->field02
->char(30));
注意不能將單詞斷開,如:
正確
mysql>create table table33
->( field01
->integer,
->field02
->char(30));
錯誤
mysql>create table table33
->( field01 inte
->ger,
->field02
->char(30));
當(dāng)插入或更改數(shù)據(jù)時,不能將字段的字符串展開到多行里,否則硬回車將被儲存到數(shù)據(jù)中:
標準操作
mysql>insert into table33 (field02)
->values
->('who thought of foo?');
硬回車儲存到數(shù)據(jù)中
mysql>insert into table33 (field02)
->values
->('who thought
->of foo?');
結(jié)果如下:
mysql>select * from table33;
field01 field02
NULL who thought of foo?
NULL who thought
Of foo?
10.表的數(shù)據(jù)嵌入
mysql>insert into table01 (field01, field02, field03, field04, field05) values
->(2, 'second', 'another', '1999-10-23', '10:30:00');
Query OK, 1 row affected (0.00 sec)
標準日期格式是"yyyy-mm-dd"。
標準時間格式是"hh:mm:ss"。
引號內(nèi)要求所給的是上述的標準日期和時間格式。
日期也可以"yyyymmdd"形式,時間也可以"hhmmss"形式輸入,但其值不需要再加引號。
數(shù)字值不需要加引號。這種保存與數(shù)據(jù)類型無關(guān),這些數(shù)據(jù)類型都有格式化的專欄來包含(例如:文本,日期,時間,整數(shù)等)。
MySQL有一個很有用的命令緩沖區(qū)。它保存著你目前已經(jīng)鍵入的SQL語句利用它,對于相同的命令,你就不必一遍又一遍地重復(fù)輸入。下一步我
們就來看這樣的一個例子。
利用命令緩沖區(qū)(及任意的日期和時間格式)增加另一個數(shù)據(jù)
按兩次鍵盤上的向上箭頭鍵。
回車。
在圓括號內(nèi)輸入新的值,并以分號結(jié)尾。
(3, 'a third', 'more', 19991024, 103004);
回車。
新值存在里面了嗎?
mysql>select * from table01;
field01 field02 field03 field04 field05
1 first NULL NULL NULL
2 second another 1999-10-23 10:30:00
3 a third more 1999-10-24 10:30:04
11.表的數(shù)據(jù)更新
一次修改一個字段
再次注意語法。文本需要加引號但數(shù)字不要。
mysql>更新 table01 set field03='new info' where field01=1;
Query OK, 1 row affected (0.00 sec)
一次改變多個字段
記住在每一個更新的字段間用逗號隔開。
mysql>更新 table01 set field04=19991022, field05=062218 where field01=1;
Query OK, 1 row affected (0.00 sec)
一次更新多個數(shù)據(jù)
mysql>更新 table01 set field05=152901 where field04>19990101;
Query OK, 3 rows affected (0.00 sec)
12.刪除數(shù)據(jù)
mysql>刪除 from table01 where field01=3;
Query OK, 1 row affected (0.00 sec)
13.退出
mysql>quit
Bye
現(xiàn)在你已經(jīng)了解了一些運行MySQL中的數(shù)據(jù)庫的根本命令。由于MySQL是通過執(zhí)行SQL調(diào)用來操作的,在你的處理過程中需要一個強有力工具的充足的數(shù)組。例如,通過聯(lián)接相關(guān)的字段,你可以同時顯示幾個表中的數(shù)據(jù)。同樣,SQL允許綜合顯示、更新或者刪除多個符合具體標準的數(shù)據(jù)。如果你還想精通掌握它,下一步就要學(xué)習(xí)所有SQL的知識。
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |