nbsp,topic,relation,id,to
后端开发-php教程
请教sql语句,多表查询一对多分页三张表
自助卡激活系统源码,deb安装ubuntu,tomcat卸载后安装失败,爬虫网店名,php cwd,宁夏seo关键词排名优化lzw
题目表topic,字段 to_id to_title安卓日历源码解析,vscode多列选择,vim ubuntu环境,tomcat支持最大qps,text爬虫,php times,seo教程网逆冬,政府网站网页签收,shopex京东全球购模板lzw
知识点表tag,字段t_id t_title木马端口封杀源码,ubuntu 开机慢 网络,TOMCAT出现乱码咋弄,自学爬虫 工作,php数组处理教程交流,sem seolzw
关联表relation,字段to_id t_id每个题目可以有多个知识点
现web界面提供搜索框,每页10个小题,用户可以多选知识点,遇到的问题是,有重复的数据的
select topic.to_id,topic.to_title from topic,relation where ( topic.to_id = relation.to_id ) and (t_id in (1,2,3));
现在的情况是,如果知识点1,2,3都是对应to_id为1的,那么就会出现3道一样题目。可如果去掉重复的话,那么又和每页10条相悖了,特向前辈请教相关sql语句,不甚感激!!!
——解决方案——————–
select distinct( topic.to_id,topic.to_title) from topic,relation ,tag where ( topic.to_id = relation.to_id ) and (t_id in (1,2,3)) limit 0,10;