sql 简单用法

在linux 环境下,用mysqli_connect 链接数据库时,只能写ip,不能写localhost。不然又错误。(因为未知)
mysql 权限管理,如果想让用户能重任何机器访问,需要grant 授权和权限


统计多少个url
select page_url,count(page_url) from urlresource group by page_url;

统计在多个页面出现的resource_url
 
select * from (select resource_url,count(resource_url) as total from urlresource group by resource_url) as a where total>=2;

统计有多少行

select count(*) from urlresource;



参考:http://blog.sina.com.cn/s/blog_5d2eee260100xu8b.html

你可能感兴趣的:(sql 简单用法)