create
創(chuàng)新互聯(lián)公司提供成都網(wǎng)站設(shè)計、成都網(wǎng)站制作、網(wǎng)頁設(shè)計,成都品牌網(wǎng)站建設(shè),廣告投放等致力于企業(yè)網(wǎng)站建設(shè)與公司網(wǎng)站制作,10多年的網(wǎng)站開發(fā)和建站經(jīng)驗,助力企業(yè)信息化建設(shè),成功案例突破成百上千,是您實現(xiàn)網(wǎng)站建設(shè)的好選擇.
table
student(
id
int(5)
not
null
auto_increatment,
name
varchar(20)
not
null,
age
int(3)
not
null,
primary
key(id));/*建表時加入這句話就可以,id是自增長的字段名稱,或者在客戶端要建的字段的屬性上勾選自增長
primary
key*/
打開ubuntu的終端窗口,輸入mysql -uroot -p進入mysql。
2
/6
SHOW DATABASES;
用USE來切換數(shù)據(jù)庫。
3
/6
SHOW TABLES;
查看表格名字,以免創(chuàng)建重復(fù)。
4
/6
CREATE TABLE clients (
user_id INT NOT NULL,
user_name VARCHAR(10) NOT NULL
);
創(chuàng)建一個表格,第一個就是我們要設(shè)置的ID號碼。
5
/6
然后我們插入數(shù)據(jù),這個時候因為我們設(shè)置了整數(shù)為ID號碼,因此這樣輸入就比較好去區(qū)別了。
6
/6
最后我們用SELECT * FROM來查看存儲好的數(shù)據(jù)。
如果有phpmyadmin的話,可以直接在建表的時候,有個“額外”這個選項,點擊進入,選中AUTO_INCREMENT
如果不能的話,則用php頁面創(chuàng)建表的時候,在sql語句插入$sql="create table $table_name(id varchar(4) not null primary key auto_increment";再執(zhí)行就可以了
需要說明的是,這個字段不是必須填入的~
直接創(chuàng)建一個自動編號字段就可以了,系統(tǒng)會自動給加上編號的,從1開始
select * from table where id=1 limit 0,10select * from table where id=2 limit 0,10或者select * from table where id=1 OR id=2 limit 0,20