Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 收集数据库调用语句

[复制链接]
dongshanfeng 发表于 2010-7-14 13:14:56 | 显示全部楼层 |阅读模式
收集uchome 数据库调用语句,请各位大侠把自己的调用语句都分享过来,以便大家都能用用

我先分享几个:
dede完美调用UCHome会员、日志、相册、话题、游戏标题、图片、头像、会员名等
1.调用人气会员:
【特色】
会员头像+查看日志+查看相册
会员头像——链接到会员空间个人主页
查看会员日志——链接到个人空间日志列表页
查看会员相册——链接到个人空间相册列表页
{dede:sql sql="SELECT * FROM `uchome_space` WHERE `avatar` =1 LIMIT 0 , 6"}
<li>
<a href="uchome地址/space.php?uid=[field:uid/]" target="_blank"><img src="ucenter地址/avatar.php?uid=[field:uid/]&size=[field:small/]" border="0" /></a>
<a style="link:text-decoration: none; color: #0088bb;" href="uchome地址/space.php?uid=[field:uid/]">[field:username/]</a>
<a href="uchome地址/space.php?uid=[field:uid/]&do=blog&id=[field:blogid/]" target="_blank">&raquo; 查看日志</a>
<a href="uchome地址/space.php?uid=[field:uid/]&do=album&id=[field:albumid/]" target="_blank">&raquo; 查看相册</a>
</li>
{/dede:sql}
        
2.调用最新日志:
【特色】
日志标题+作者+浏览量
日志标题及浏览量——链接到个人主页该日志页面
作者——链接到空间个人主页
{dede:sql sql="SELECT * FROM `uchome_blog` AS `blog` WHERE `blog`.`friend`='0' ORDER BY `blog`.`dateline` DESC limit 0,6"}
<li><a href="uchome地址/space.php?uid=[field:uid/]&do=blog&id=[field:blogid/]" target="_blank">[field:subject function="cn_substr('@me',52)" /]</a> - <a style="link:text-decoration: none; color: #999;" href="uchome地址/space.php?uid=[field:uid/]" target="_blank">[field:username/]</a>
  <a style="link:text-decoration: none; color: #999;" href="uchome地址/space.php?uid=[field:uid/]&do=blog&id=[field:blogid/]" target="_blank">浏览:[field:viewnum function="cn_substr('@me',42)" /]</a>
</li>
{/dede:sql}
3.调用群组最新话题:
【特色】标题(链接到该话题页面)
{dede:sql sql="SELECT * FROM `uchome_thread` AS `thread` ORDER BY `thread`.`dateline` DESC limit 0,1"}
<li><a href="uchome地址/space.php?uid=[field:uid/]&do=thread&id=[field:tid/]" target="_blank">[field:subject function="cn_substr('@me',40)" /]</a></li>
{/dede:sql}
        
4.调用最新相册:
【特色】
图片(每个相册调用一张)+作者+相册名称+数量(每个相册包含张数)
所有都链接到空间个人主页的该相册缩略图列表
         
{dede:sql sql="SELECT * FROM uchome_album FORCE INDEX(updatetime) ORDER BY dateline DESC LIMIT 0,6"}
<li>
<a href="uchome地址/space.php?uid=[field:uid/]&do=album&id=[field:albumid/]" target="_blank"><img src="uchome地址/attachment/[field:pic]"/]" imgwidth="124" imgheight="94"></a>
<a style="link:text-decoration: none; color: #0088bb;" href="uchome地址/space.php?uid=[field:uid/]&do=album&id=[field:albumid/]" target="_blank">[field:username/][field:title_template function='str_replace("{actor}","",@me)'/]</a>
<a href="uchome地址/space.php?uid=[field:uid/]&do=album&id=[field:albumid/]" target="_blank">[field:albumname/][field:title_template function='str_replace("{actor}","",@me)'/]</a>
<a style="link:text-decoration: none; color: #999;" href="uchome地址/space.php?uid=[field:uid/]&do=album&id=[field:albumid/]" target="_blank">([field:picnum/]幅)</a>
</li>
{/dede:sql}
5.调用会员添加的游戏(应用)(最新,网上绝无):
【特色】
游戏缩略图+游戏名称(链接到游戏页面,但需登录UCHome后方可操作。)
{dede:sql sql="SELECT * FROM `uchome_userapp` LIMIT 0,6"}
<li>
<a href="uchome地址/cp.php?id=[field:appid/]" target="_blank"><img src="[url=http://appicon.manyou.com/logos/[field:appid/]http://appicon.manyou.com/logos/[field:appid/[/url]]" alt="[field:appname/]" /></a>
<a href="uchome地址/cp.php?id=[field:appid/]" target="_blank">[field:appname/]</a>
</li>
{/dede:sql}
            
代码中添加的样式(如:style="link:text-decoration: none; color: #0088bb;")可以根据自己需要修改,用不到的可以删除。
链接的页面可自己根据需要修改。




 楼主| dongshanfeng 发表于 2010-7-14 13:16:16 | 显示全部楼层
1、调用含有图片的日志

  Select * FROM `uchome_blog` Where `picflag` =1;

  2、调用最近更新的10条日志

  Select * FROM uchome_blog FORCE INDEX(dateline) orDER BY dateline DESC LIMIT 0,10;

  3、调用最近更新的10个相册

  Select * FROM uchome_album FORCE INDEX(updatetime) orDER BY dateline DESC LIMIT 0,10;

  说明:这是调用所有相册

  加个条件:调用隐私设计为全站可见的相册

  Select * FROM uchome_album FORCE INDEX(updatetime) Where `friend` =0 orDER BY dateline DESC

  说明:friend值: '0'全站用户可见,'1'为全好友可见,'2'为仅指定的好友可见,'3'为仅自己可见,'4'为凭密码查看

  4、调用最近的10条迷你博客

  Select * FROM uchome_doing FORCE INDEX(dateline) orDER BY dateline DESC LIMIT 0,10;

  5、调用我的话题

  Select * FROM uchome_thread orDER BY dateline DESC LIMIT 0,10;

  6、调用3天内回复数最多的日志

  Select * FROM uchome_blog Where dateline>UNIX_TIMESTAMP()-86400*3 orDER BY replynum DESC

  7、调用选吧一周内的热点话题

  select * FROM uchome_thread where dateline>=UNIX_TIMESTAMP()-604800 orDER BY viewnum DESC;

  或者Select * FROM uchome_ thread Where dateline>=UNIX_TIMESTAMP()-86400*7 orDER BY viewnum DESC;

  8、调用最近3天注册的人,且按照降序排列

  Select * FROM uchome_space Where dateline>UNIX_TIMESTAMP()-86400*3 orDER BY dateline DESC;

  9、调用最后更新的10位会员

  select * from uchome_space order by updatetime desc LIMIT 0,10;

  10、将用户栏目的内容列表出来,并以用户积分作为排列顺序

  Select * FROM uchome_spacefield sf, uchome_space s Where s.uid=sf.uid order by s.credit desc

  说明:field_1为 uchome_spacefield 这个表要调用的用户栏目选择项,可以为field_1,field_2。。。

  11、调用个人空间性别为女的用户

  select * from uchome_space s,uchome_spacefield sf where s.uid=sf.uid and sf.sex=2

  12、调用个人空间性别为男的用户

  select * from uchome_space s,uchome_spacefield sf where s.uid=sf.uid and sf.sex=1

  13、调用积分高的前10个会员

  select * from uchome_space order by credit desc LIMIT 0,10;

  14、调用访问量最大的空间

  select * from uchome_space order by viewnum desc LIMIT 0,10;

  15、调用指定用户的日志

  Select * FROM `uchome_blog` Where uid =1 LIMIT 0 , 10

  这是调用uid为1的10条记录

  16、调用有头像的10个会员

  Select * FROM `uchome_space` Where `avatar` =1 LIMIT 0 , 10

  17、调用某一主题回复的内容

  Select * FROM `uchome_post` Where tid =1 AND isthread =0 LIMIT 0 , 30;

  上面的SQL语,可以调用主题id为1的30条回复

  18、调用群组

  Select * FROM `uchome_mtag` LIMIT 0 , 10

  19、调用一周热门会员

  select * from uchome_space Where  dateline>=UNIX_TIMESTAMP()-3600*24*7 orDER BY viewnum DESC LIMIT 0,18

  20、调用发过帖子且有头像的会员

  Select * from uchome_blog s,uchome_space sf where s.uid=sf.uid and sf.avatar=1

  21、调用最热的群组

  select * from uchome_post s,uchome_mtag sf where s.tagid=sf.tagid and orDER BY sf.membernum DESC LIMIT 0,10;

  22、调用有图片的5个相册

  Select * FROM `uchome_album` Where picflag =1 LIMIT 0 , 30

  23、调用竞价排行

  Select * FROM `uchome_show` orDER BY credit DESC LIMIT 0,10;

  24、调用最新上传的10张图片

  Select * FROM `uchome_pic`order by dateline desc LIMIT 0,10;

  25、调用有话题的群组

  select * from uchome_post s,uchome_mtag sf where s.tagid=sf.tagid LIMIT 0 , 10

  26、调用最新的10个群组

  Select * FROM `uchome_mtag`ORDER BY tagid DESC LIMIT 0,10;

  27、调用群主id为1的有头像的10个会员

  Select * from uchome_tagspace s,uchome_space sf where s.uid=sf.uid and sf.avatar=1 AND s.tagid=1 orDER BY sf.dateline DESC LIMIT 0,10;

  28、调用单身的用户select * from uchome_space s,uchome_spacefield sf where s.uid=sf.uid and sf.marry=1

  29、调用实名认证用户select * from uchome_space where `name`!=''

  30、调用话题标题和所属群组名称select * from uchome_mtag s,uchome_thread sf where s.tagid=sf.tagid orDER BY sf.dateline DESC LIMIT 0,10;

  31、随机调用用户的头像和用户名Select * FROM `uchome_space` AS `space` LEFT JOIN `uchome_spacefield` AS `spacefield` on `space`.`uid`=`spacefield`.`uid` Where `space`.`avatar`='1' orDER BY RAND()

  32、调用指定群组的最新话题select s.*,sf.* from uchome_post s,uchome_mtag sf where s.tagid=sf.tagid and sf.tagid=1 orDER BY s.dateline LIMIT 0 , 10

  上面的SQL指调用群组id为1的最新10个话题

回复

使用道具 举报

 楼主| dongshanfeng 发表于 2010-7-14 13:17:14 | 显示全部楼层
有更加个性的调用语句的大虾,小虾,哥们兄弟,神仙姐姐们来分享啊
回复

使用道具 举报

 楼主| dongshanfeng 发表于 2010-7-14 13:28:18 | 显示全部楼层
国(Ecms) 调用uchome图像、日志、论坛图片标签时间:2009-10-13 15:19来源:个人站长网 作者:Grzz
核心提示:操作类型 说明 操作类型 说明 0 各栏目最新 1 各栏目热门 2 各栏目推荐 9 各栏目评论排行 12 各栏目头条信息 15 各栏目下载排行 25 各栏目评分排行 26 各栏目投票排行 3 所有信息最新 (默认表) 4 所有信息热门 (默认表) 5 所有信息推荐 (默认表) 10 所有信息评论排行 (
-
1、整合uc   我用(UCenter接口: [DISCUZ UCenter GBK接口] )
严格按照  上面整合说明做   特别是最后一步  清空表(一定要,不要会出错的,本地试过没清楚总是出错)
一步一步就会成功整合的

2、uchome榜上有名  第1、2、3张图像调用便签(说一下我用的全是万能便签,我会把便签模板、调用SQL全部复制来)
调用SQL代码:[ecmsinfo]'SELECT uid as userid, username  FROM uchome_show ORDER BY credit DESC LIMIT 3',3,10,0,24,35,0[/ecmsinfo]
页面模板内容:[!--empirenews.listtemp--]<!--list.var1-->[!--empirenews.listtemp--]
列表内容模板:<div><div><a href="http://my.zh11.com/space.php?uid=[!--userid--]" target="_blank"><img src="http://www.zh11.com/uccenter/avatar.php?uid=[!--userid--]&size=middle&type=virtual" width="60" height="60" /></a></div>
<div><a href="http://my.zh11.com/space.php?uid=[!--userid--]" target="_blank">[!--username--]</a></div></div>

3、uchome最新日志+用户名 调用便签
调用SQL代码:[ecmsinfo]'select subject as title,uid as userid,username,blogid as id from uchome_blog order by blogid desc limit 3',0,20,0,24,39,0[/ecmsinfo]
页面模板内容:[!--empirenews.listtemp--]<!--list.var1-->[!--empirenews.listtemp--]
列表内容模板:<li style="line-height:18px;"><a href="http://my.zh11.com/space.php?uid=[!--userid--]">[!--username--]</a>说:<a href="http://my.zh11.com/space.php?uid=[!--userid--]&do=blog&id=[!--id--]" target="_blank">[!--title--]</a></li>

4、论坛指定栏目图片调用标签(我网站精彩贴图3张图片调用的例子)
调用SQL代码:[ecmsinfo]'select u.attachment as titlepic,ui.subject as title,u.tid as id from cdb_attachments u LEFT JOIN cdb_threads ui ON u.tid=ui.tid where u.isimage=1 and fid=21 or fid=23 or fid=24 order by ui.tid DESC limit 3',0,16,0,24,37,0[/ecmsinfo]
解释一下:fid=21 or fid=23 or fid=24论坛栏目编号 (我网站调用搞笑贴图(fid=21)、美图分享(fid=23)、娱乐八卦(fid=24))
页面模板内容:<table width="98%" align="center">
[!--empirenews.listtemp--]
<tr>
<td><!--list.var1--></td><td><!--list.var2--></td><td><!--list.var3--></td>
</tr>
[!--empirenews.listtemp--]
</table>
列表内容模板:<a href="http://bbs.zh11.com/viewthread.php?tid=[!--id--]" target="_blank"><img src="http://bbs.zh11.com/attachments/[!--titlepic--]"  width="110" height="60" /></a><br />
<a href="http://bbs.zh11.com/viewthread.php?tid=[!--id--]" target="_blank">[!--title--]</a>

5、论坛指定栏目最新帖子(我的网站珠海知道调用“百姓问道”栏目信息)
调用SQL代码:[ecmsinfo]'select subject as title,tid as id from cdb_threads where fid=2 order by tid desc limit 14',0,30,0,24,36,0[/ecmsinfo]
页面模板内容:<table width="98%" align="center">
[!--empirenews.listtemp--]
<tr>
<td style="line-height:18px;"><!--list.var1--></td>
</tr>
[!--empirenews.listtemp--]
</table>
页面模板内容:<a href="http://bbs.zh11.com/viewthread.php?tid=[!--id--]" target="_blank">[!--title--]</a>

回复

使用道具 举报

神的天使 发表于 2010-7-14 15:14:33 | 显示全部楼层
留名学习一下~方便以后查询~
回复

使用道具 举报

冻结记忆 发表于 2010-7-29 12:44:04 | 显示全部楼层
数据库可以调用帖子吗
回复

使用道具 举报

sr178 发表于 2010-9-7 22:55:12 | 显示全部楼层
记录一下,方便日后有
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-24 18:56 , Processed in 0.029729 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表