2008/10/24

MySQL常用指令...

大致分為四類
Login、Show Table Info、DB Operation、DB Schema Operation

◎login
  ● mysql –u root –p 資料庫
  ● password:mysql

◎Show table Info
  ●show tables;(目前所有的資料表)
  ●describe 資料表;(此資料表的schema)

◎DB Operation
  ●select * from 資料表;(查詢資料)
  ●insert into 資料表 values (NULL, 2, “alan is 裴帥”);(新增資料)
  ●update 資料表 set 欄位=資料 where 欄位=資料;(變更資料)
  ●delete from 資料表 where欄位=資料; (刪除資料)

◎DB Schema Operation
  ●alter table 資料表 add 欄位 格式 after 欄位;(新增欄位)
  ●alter table 資料表 modify 欄位 格式;(變更欄位)
  ●alter table 資料表 drop 欄位;(刪除欄位)
  ●格式有以下幾種
    》primary key
    》not null
    》auto_increment
    》varchar(32), int(10) unsigned, smallint(5) unsigned, tinyint(3) unsigned,…
    》rename 欄位

沒有留言:

張貼留言