artfoxe6#gmail.com new
摘要: 14.1.1 创建存储过程 MySQL中,创建存储过程的基本形式如下: CREATE PROCEDURE sp_name ([proc_parameter[,...]]) [characteristic ...] routine_body 其中,sp_name参数是存储过程的名称;proc_para 阅读全文
posted @ 2015-10-16 13:30 codeAB 阅读(391) 评论(0) 推荐(0)
摘要: 唯一索引(unique index)强调唯一,就是索引值必须唯一。 create unique index [索引名] on 表名 (列名);alter table 表名 add unique index [索引名] (列名);删除索引:drop index 索引名 on 表名;alter tabl 阅读全文
posted @ 2015-10-16 10:51 codeAB 阅读(374) 评论(0) 推荐(0)