mysql使用随笔
mysql 删除语句 :delete from 表名 where 条件; 例如 delete from tbuserinfo where id= 2;
mysql 查询语句 :select * 列名 from 表名 where 条件;
mysql 模糊查询 : SELECT * FROM 表名 WHERE 列名 LIKE "3%";(表示查询该列中第一个字符为3的所有数据)
mysql 修改语句 : update 表名 set 列名 = ‘值’ where 条件;
mysql 插入语句 :insert into 表名 values ‘内容’,‘内容’;