数据库SQL语句解析
Posted 猪猪宝丫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库SQL语句解析相关的知识,希望对你有一定的参考价值。
学习网站:
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语句解析的主要内容,如果未能解决你的问题,请参考以下文章