2018年4月20日
摘要: 操作关键词: 1.show //查看、展示 2.use //选择(库/表) 3.database/s //库/所有库 4.table/s //表/所有表 5.primary key //主键:不可重复,不可为空 6.unique key //唯一键:不可重复,可以为空 7.primary key(i 阅读全文
posted @ 2018-04-20 21:32 Aifeiff 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 注意事项: 符号必须为英文。 数据库操作层级: 建表大全: #新建表zuoye1;drop table if exists zuoye1;create table zuoye1( id int auto_increment not null, #字段名id,整数类型,自增长,不可为空 f1 floa 阅读全文
posted @ 2018-04-20 09:04 Aifeiff 阅读(245) 评论(0) 推荐(0) 编辑