MySql指令、用法及注意事項
阿新 • • 發佈:2019-02-07
MySql指令
- 查看錶結構
desc table_name;
- 修改某一列的資料型別
假設表stu有一列id原本的資料型別是int(11)將其型別改為varchar(20)的語句如下:
alter table stu change id id varchar(20);
- 刪除一列
alter table 表名 drop column 列名;
- 刪除一個表
drop table 表名;
- 更新表中資料
update 表名 set 列名 = 'new data' where 條件;
//條件可以是 where id = 20 等。
匯入外部資料
- 怎樣從EXCEL匯入到mysql?
首先需要將EXCEL檔案另存為csv檔案或者帶製表符分隔的txt檔案,隨後通過如下命令匯入:
load data local infile 'csv(txt)檔案路徑' into table 表名 fields terminated by ',';
或者
load data local infile 'csv(txt)檔案路徑' into table 表名 fields terminated by '\t';
- 從sql檔案匯入
source '檔案路徑'