Blogger Information
Blog 110
fans 0
comment 0
visits 112320
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
给你总结好了一些mysql的常用sql语句
Coco
Original
438 people have browsed it

  1、插入数据语句:INSERT INTO 数据表 (字段1,字段2) VALUES(`值1`,`值2`);

  //获取刚才插入的数据的ID

  $sql="insert into username(username,password)values('刘柱','liuzhu1')";

  if(mysql_query($sql)){

  echo "插入的ID为".mysql_insert_id();

  }

  2、查询语句:SELECT * FROM 数据表;

  //模糊查询:%%,这个的意思是%name%包含name的,name%,以name开头的

  SELECT * FROM 80cms_user_id WHERE user_id LIKE '222.222.28.%';

  $sql="select * from ceshi where username like '小%' or username like '%1%'";

  //条件查询:where

  SELECT * FROM 数据表 where id=1;等等条件

  SELECT username from username WHERE userid in(3,2);

  //取唯一值,把这个列所有相同的值全部干掉只剩下一个人来显示:distinct

  $sql="select distinct username from ceshi";//select distinct 字段 from 表

  //取数据表中的空值:null 和not null

  select * from ceshi where username is null;或者username is not null;

  /连接符,把id和username这两个值起来:select concat(id,username) from ceshi

  //$sql="select concat(id,'-',username) from ceshi";

  //可以取出数据表中的两个字段值,然后在合并一个字段值,然后起个别名在输出

  $sql="select id,username,concat(id,'-',username) as idname from ceshi";

  //随机取出3个根据一个随机数字的排序:order by

  $sql="select * from ceshi order by rand() limit 0,3";

  按照多个字段:id desc,time desc;

  //求一下数据库中的值的和,你可以给这个和取一个别名,然后利于你使用数组来取这个值:count

  select count(*) tot from ceshi;

  //取出数据库中username包含刘的这些值,然后取和

  $sql="select count(*) tot from ceshi where username like '%刘%'";

  //取出数据库中的和/最大值/最小值

  $sql="select sum(id) as sum from ceshi where username like '%刘柱%'";

  $sql="select max(id) as max from ceshi where username like '%刘柱%'";

  $sql="select min(id) as min from ceshi where username like '%刘柱%'";

  获取一个字段在这个表中的个数

  //GROUP BY 语句用于结合合计函数,根据一个或多个列对结果集进行分组。

  获取一个人发帖的次数,进行分组归类,如果分组之后还有order by的排序的话,那么一定要写在group by后面,这个优先级高,还有就是当你想再后面还有添加条件的时候,那么就只能用having这个来连接,之后你还可以进行排序,还有一种情况就是说:where id=1 group by 这样的形式也是一样,group by这个是以谁为分组,那么就会合并相同的数值

  SELECT username,COUNT(userid) as tot from username GROUP BY username;

  这句话的意思是说,将username相同的值合并求和,依据userid,也就是算算一个出现多少次

  $sql="select username,count(id) as tot from ceshi group by username having tot>5 order by asc";

  $res=mysql_query($sql);

  while($row=mysql_fetch_assoc($res)){

  echo "username:".$row['username']."次数:".$row['tot']."
";

  }

  ?

  //多表查询的总结from 表1,表2,表3,.....,还有你要写清楚了你查的是那个表的字段,一定是【表.字段】

  $sql="select username.username,post.title,post.content from username,post where username.userid=post.userid";

  //这个是多表查询,然后分组进行求和GROUP BY username.userid,这个group by可以后面使用任意,除去post.id,,,用group by的时候,能用id就用id加索引的比较快,这个叫分组聚合函数,也就是说group by叫分组,那么聚合呢就时你要加一个函数,比如说count等等,如果没有聚合函数的话,那么这个值将只出现一次,也就是把所有属于它的数值取最新的值,给它,还有就是说,当你以游戏账号买卖哪个字段为分组的时候,那么没有聚合函数的话,这个值将只取最新的第一条数据

  select username.username,count(username.userid) as tot from username,post where username.userid=post.userid GROUP BYusername.userid

  //left join左连接,就是依据左边的表,然后来搭配右面,以左面为准,就是想把完全显示的东西,放在左边

  $sql="select username.username,post.title,post.content from username left join post on username.userid=post.userid";

  //right join右连接,就是以右面为准,就是把完全显示的表放在右面

  select username.username,post.title,post.content from username right join post on username.userid=post.userid;

  //嵌套式的查询:有个缺点就是where后面的字段的索引会失效,那么速度将会降下来

  $sql="SELECT username from username WHERE userid in(SELECT userid FROM post)";

  3、删除语句:delete from 数据表 where id=1;

  4、更新语句:update 表 set 字段值=新值,字段值=新值 where id=1 and name=1;

  5、创建表的时候其中要注意的是:有一个int(3)这样的以的修饰字段类型的值,那么这个3代表的与长度无关,不够3位时,前面加0,默认是不显示的

  6、char(n)

  这个是你无论n是多少,都会占用255个字节,但是你这个n是有限制的,也就是说你n写多少,就是多少,不能大于n

  varchar(n)

  这个是你写多少个字符就占用多少个字符

  text

  这个是65535个字节

  longtext

  这个是42亿字节

  7、日期类型

  date 月

  time 时分秒

  datetime 年月日时分秒

  year 年

  建议存int类型

  8、字段属性

  1》unsigned

  无符号,也就是,不会有负数的出现

  2》zerofill

  0填充,也就是int(3),这个你传进去一个1,但是你规定的是3位,那么就会001

  3》auto_increment

  id自增

  4》null

  5》not null

  6》default

  9、数据表字段加索引的一些问题。这个加了索引如果你搜索的时候,where id=1;或者name='liuhzu';这样的话会加快检索的速度,当然一个表中只能有一个主键索引,但是普通索引可以是多个,主键索引一般是id

  10、mysql结构化查询语句

  结构化查询语言sql包含

  1、DDL //数据定义语言:create/drop/alter

  2、DML //数据操作语言:insert/update/delete

  3、DQL //数据查询语言:select

  4、DCL //数据控制语言:grant/commit/rollback

  11、多表更新操作

  update tb_express a,tb_plot b set a.plotname='',a.plotstatus=0,b.express_id=0 where a.express_id=$editPlotExpressid AND b.id=$editPlotplotid

  12、根据id 查 name

  select name from table where id in(1,2,3,4,4)

  13、Mysql逻辑操作判断

  (1)select if(1<2,1,0);

  返回的是1,这个就是判断参数1的逻辑判断是否正确,如果正确返回第一个参数,如果不正确返回0

  (2)、ifnull的操作,如果为空就返回第二个参数,如果不为空就返回当前的参数值

  (3)case when then...的操作

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post