**
**
1.查询
select 字段名 from 表名 where 条件
例: select username from userinf where id=1;
2.增加
insert into 表名 (列1,列2,列3…)values (值1,值2,值3,…);
例: insert into userinf (account,username,password,role)values(001,张三,123456,1);
注:字符串类型的值需要用英文状态下的 " 括起来
3.删除
delete from 表名 where 条件;
例: delete from userinf where id=1;
4.改表
update 表名 set 列1=新值1,列2=新值2,… where 条件;
例: update userinf set account=002,password=111111 where id=1;
**
**
1.查找新增数据后的自增id值
SELECT max(id) FROM taskinf;
taskinf 表名 id为该表中的字段并且是自增的
2.查找某个数据的数量(常用注册用户时查找注册名是否存在)
select COUNT(*) AS count FROM userinf where account = ‘10001’;
userinf 表名,查找userinf表中 **account=‘10001’**的数量
未完待续。。。。。