SQL判断语句用法和多表查询

1.格式化时间sql语句

  本例中本人随便做了两张表,和实际不是很相符,只是想说明sql语句的写法。

  例1表格式如下:

  需求:查询出本表,但需要使time字段的时间格式为yyyy-mm-dd,比如:2013-08-13

  sql写法:

select u.id,u.userid,u.timetype,date_format(time,'%y-%m-%d') as time,secondid from `user` u

  运行结果:

  2.多表查询(三表查询)

  例二三表结构如下:

  需求:查询出主表,要求在主表中显示username和secondname

  sql写法:

select u.id,n.`name`,u.timetype,u.time,s.`name` from `user` u,`name` n,`second` s
  where u.userid=n.id and u.secondid=s.id

  运行结果:

  3.when then判断语句

  例三表结构如下:

  需求:查询上表,若timetype字段值为2时,显示每月的第二天,若timetype字段值为4时,显示每月的第四天

  sql写法:

 select u.id,u.userid,(case when u.timetype=2 then '每月第二天' when u.timetype=4 then '每月第四天' end) as timetype ,u.time,u.secondid from `user` u

  运行结果:

以上所述是www.887551.com给大家介绍的sql判断语句用法和多表查询,希望对大家有所帮助

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐