identified by 'stupid';
7.重新命名表:
alter table t1 rename t2;
為了改變列a,從integer改為tinyint not null(名字一樣),
並且改變列b,從char(10)改為char(20),同時重新命名它,從b改為c:
alter table t2 modify a tinyint not null, change b c char(20);
增加乙個新timestamp列,名為d:
alter table t2 add d timestamp;
在列d上增加乙個索引,並且使列a為主鍵:
alter table t2 add index (d), add primary key (a);
刪除列c:
alter table t2 drop column c;
增加乙個新的auto_increment整數列,命名為c:
alter table t2 add c int unsigned not null auto_increment,add index (c);
注意,我們索引了c,因為auto_increment柱必須被索引,並且另外我們宣告c為not null,
因為索引了的列不能是null。
8.刪除記錄:
delete from t1 where c>10;
6.改變某幾行:
update t1 set user=weiqiong,password=weiqiong;
7.使用name列的頭10個字元建立乙個索引:
create index part_of_name on customer (name(10));
mysql初學者 MySQL初學者使用指南
一 連線mysql 格式 mysql h主機位址 u使用者名稱 p使用者密碼 1 例1 連線到本機上的mysql。首先在開啟dos視窗,然後進入目錄 mysqlbin,再鍵入命令mysql uroot p,回車後提示你輸密碼,如果剛安裝好mysql,超級使用者root是沒有密碼的,故直接回車即可進入...
Linux下shell(獻給初學者)
shell下的控制結構 一 if condition 執行第一段程式 else 執行第二段程式 fi fi為結束 if 條件 then 執行 elif 條件2 then 執行 else 執行 fi二 case 變數名稱 in 第乙個變數的內容 程式一 第二變數的內容 其他程式段 exit 1 esa...
使用MySQL 初學者
登入命令 mysql u root p而後便可出現以下內容 現在便可使用mysql了,現在便可使用 資料庫操作 show databases 此 可以檢視建立的資料庫,注意分號以及拼寫 create database 此處 便是你要建立資料庫的名稱 drop database 刪除資料庫 use 這...