1.计算字段name中有多少个不相同的值。
select count(distinct(name)) from 表名
2.显示字段name的所有值。
select distinct name from table
3.为了建一个表防止已经存在。
DROP TABLE IF EXISTS `table`;
4.判断是否含有某字符串
strtr($a,"exe")返回一个布尔值,用于判断字符串$a中是否含有exe字段。
strstr($a,$b,$c)返回一个字符串,用于把字符串$a中的$b替换为$c。
5.update语句
update 表名 set address='abc' where id=1;
把id=1的项置其address为'abc'
若id不存在,则用 insert into 表名 (id,address) values (1,'abc')
6.条件查询:
select * from 表名 where 条件1 and 条件2 and 条件3
7.修改字段长度
alter table 表名 modify column 字段名 类型;
例如:
数据库中user表 name字段是varchar(30)
可以用
alter table user modify column name varchar(50)
这样就修改了。