[实践OK]PhpMyAdmin里面加上唯一索引和自增长的方法,二是ENUM在PhpMyAdmin里面添加方法,用如下sql命令
一)PhpMyAdmin里面加上唯一索引和自增长:
phpmyadmin设置id自增(AUTO_INCREMENT) 在A_I 前面打勾。
来自:[url=https://jingyan.baidu.com/article/fcb5aff7b3a025edaa4a7130.html]https://jingyan.baidu.com/article/fcb5aff7b3a025edaa4a7130.html[/url]
唯一索引:在A_I左边有索引指示,下拉即可选择,主要就是自增,否则入库时会提示save() needs primaryKey ,id字段一个是唯一一个是自增两者都需要,否则还是会提示save() needs primaryKey ,算是表的第一个字段的标配。
二)PhpMyAdmin界面添加:
字段 q_status
类型 ENUM
长度/值*1 'def','pub','del'
ALTER TABLE `test_subject` ADD `Status` ENUM('view','pub','del') NOT NULL
ALTER TABLE `user_test` ADD `is_correct` ENUM('yes','no') NOT NULL
phpmyadmin设置id自增(AUTO_INCREMENT) 在A_I 前面打勾。
来自:[url=https://jingyan.baidu.com/article/fcb5aff7b3a025edaa4a7130.html]https://jingyan.baidu.com/article/fcb5aff7b3a025edaa4a7130.html[/url]
唯一索引:在A_I左边有索引指示,下拉即可选择,主要就是自增,否则入库时会提示save() needs primaryKey ,id字段一个是唯一一个是自增两者都需要,否则还是会提示save() needs primaryKey ,算是表的第一个字段的标配。
二)PhpMyAdmin界面添加:
字段 q_status
类型 ENUM
长度/值*1 'def','pub','del'
ALTER TABLE `test_subject` ADD `Status` ENUM('view','pub','del') NOT NULL
ALTER TABLE `user_test` ADD `is_correct` ENUM('yes','no') NOT NULL
作者:jackxiang@向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除
地址:https://jackxiang.com/post/1202/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!
最后编辑: jackxiang 编辑于2020-2-24 23:29
评论列表