今天在Java學習群里看到有人問:用alert能不能修改表結構?我第一反應是,alert是彈窗啊,怎麼修改表結構?後來再看才知道,是那人打錯了!我也暈了一下,還是記一下吧!alter是修改表結構的,alert()是彈出框! —————————————————————————————————————— ...
今天在Java學習群里看到有人問:用alert能不能修改表結構?我第一反應是,alert是彈窗啊,怎麼修改表結構?後來再看才知道,是那人打錯了!我也暈了一下,還是記一下吧!alter是修改表結構的,alert()是彈出框!
——————————————————————————————————————————————————————————————————————————————
alert彈出框:
<script type="text/javascript">
alert("我是提示文字!");
</script>
——————————————————————————————————————————————————————————————————————————————
MySQL alter修改資料庫表結構用法,出自另位兄臺的博客,原文鏈接:http://blog.sina.com.cn/s/blog_59e0c16f0100w4wj.html。
1.alter操作表欄位
(1)增加欄位
alter table 表名 add 欄位名 欄位類型;
alter table student add name varchar(10);
(2)修改欄位
alter table 表名 change 舊欄位名 新欄位名 欄位類型;
alter table student change name name varchar(20)not null default 'liming';//修改欄位類型
alter table student change name name1 varchar(20)not null default 'liming';//修改欄位名
(3)刪除欄位
alter table 表名 drop 欄位名;
alter table student drop name;
2.alter 索引操作
(1)增加索引
alter table 表名 add index 索引名 (欄位名1,欄位名2.....);
alter table student add index stu_name(name);
(2)刪除索引
alter table 表名 drop index 索引名;
alter table student drop index stu_name;
(3)查看某個表的索引
show index from 表名;
(4)增加唯一限制條件的索引
alter table 表名 add unique 索引名(欄位名);
3.主鍵操作
增加主鍵:
alter table 表名 add primary key(欄位名);