1、改表名
alter table table_name rename new_tablename
2、改欄位型別alter table table_name modify 《欄位名》 《資料型別》
3、改欄位名alter table table_name change 《舊欄位名》 《新欄位名》 《新字段資料型別》
4、新增字段alter table 《表名》 add 《新欄位名》 《資料型別》 [約束條件] [first |after 已存在欄位名]
5、刪除字段alter table 《表名》 drop 《欄位名》
6、修改字段排列位置alter table 《表名》 modify 《欄位1> 《資料型別》 first|after 《欄位2>
least(value1,value2,value3,.......)#取最小值
greatest(value1,value2,value3,.......)#取最大值
***********************************====
like "%d"#匹配任何數目的字元,包括零字元
like "d_"#只匹配乙個字元
mysql基礎語法演示 mysql基礎語法
1 ddl 增刪改查 1 select 獲取資料 select from 表名 where 條件 2 update 更新資料 update 表名 set 欄位名 值,欄位名 值 where 條件 3 delete 刪除資料 delete from 表名 where 條件 4 insert into ...
mysql 語法入門 mysql基礎語法
1 dml 增刪改查 1 select 獲取資料 select from 表名 where 條件 2 update 更新資料 update 表名 set 欄位名 值,欄位名 值 where 條件 3 delete 刪除資料 delete from 表名 where 條件 4 insert into ...
mysql基礎語法
連線伺服器 mysql h host u user p 連線伺服器 建立資料庫 show databases 顯示當前伺服器上有什麼伺服器 use databasename 選擇資料庫 create database databasename 建立資料庫 建立表 show tables 顯示當前伺服...