码迷,mamicode.com
首页 > 数据库 > 详细

【数据库】SQL语句解析

时间:2019-02-24 21:38:42      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:inf   png   url   weight   htm   div   src   span   现在   

学习网站:

http://www.runoob.com/sql/sql-having.html

1.

技术图片

1.现在我们想要查找总访问量大于 200 的网站。

回取出多条重复的网址的SQL语句:

1 select 
2  a.url 
3 from websites a 
4 inner join access_log b
5 on a.id=b.site_id
6 where b.count>200 
只能取到不重复的网址的SQL语句:
1 select 
2  a.url 
3 from websites a 
4  where a.id in (select site_id from access_log b where b.count>200); 

 

 

【数据库】SQL语句解析

标签:inf   png   url   weight   htm   div   src   span   现在   

原文地址:https://www.cnblogs.com/zhuzhubaoya/p/10427955.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!