摘要: 1 # 创建表 2 create table employee( 3 id int not null unique auto_increment, 4 name varchar(20) not null, 5 sex enum('male','female') not null default 'm 阅读全文
posted @ 2018-08-06 14:57 mumupa0824 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 数据操作: http://www.cnblogs.com/linhaifeng/articles/7267587.html 数据得增删改: 1.插入数据 insert 2.更新数据 update 3.删除数据 delete 权限管理 一、插入数据 1. 插入完整数据(顺序插入) 语法一: INSERT... 阅读全文
posted @ 2018-08-06 10:35 mumupa0824 阅读(437) 评论(0) 推荐(0) 编辑