THINKPHP怎么查询一张表中某个字段数据重复次数最多的前几名!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了THINKPHP怎么查询一张表中某个字段数据重复次数最多的前几名!相关的知识,希望对你有一定的参考价值。
问的有点拗口 比如说 表answer有username这个字段,那么我怎么查询出这个字段中内容重复次数最多的前3个呢?
SELECT `username`,COUNT(`username`) AS c FROM `answer` GROUP BY `username` ORDER BY c DESC LIMIT 10这样可以查询出 那些username 和出现的次数
这种复杂的表查询可以用
$Model = new Model() // 实例化一个model对象 没有对应任何数据表$Model->query("这里是上面的sql语句"); 参考技术A $model=M('answer');
$model->field('count(username) num,username')->group('username')->order('num desc')->limit('3');
//也可以使用普通的sql语句,然后$model->query() 参考技术B SELECT TOP 3
degree ,
COUNT(1) AS 人数
FROM
Student
GROUP BY
degree
ORDER BY
degree DESC 参考技术C SELECT * FROM `answer` group by usernameorder by usernamedesc limit 2
sql查看一张表中某个字段是不是存在??怎么写啊
select * from user_tab_columns t where t.table_name=表名 and t.column_name =字段;字段和表名都是大写哦 参考技术A select * from table where column is not null 参考技术B 什么数据库,,,
sqlserver如下:
select 1
from sysobjects t1 inner join syscolumns t2 on t1.id=t2.id
where t1.name='表名'
and t1.xtype='u'
and t2.name=‘列明’
有数据就有 参考技术C select * from 表名 where=‘条件(字段)’追问
。。。。。。。。。。
追答select 表名 from 字段
以上是关于THINKPHP怎么查询一张表中某个字段数据重复次数最多的前几名!的主要内容,如果未能解决你的问题,请参考以下文章