本帖最后由 pcyo 于 2009-9-30 22:14 编辑
查资讯自定义字段:SELECT i.*,n.*,c.type as c_type,c.name as c_name,c.displayorder as c_displayorder,c.customfieldtext as c_customfieldtext,c.isdefault as c_isdefault,c.isshare as c_isshare FROM supe_spaceitems i, supe_spacenews n, supe_customfields c WHERE i.itemid = n.itemid AND n.customfieldid = c.customfieldid AND n.customfieldid !=0
复制代码通过supe_spaceitems,supe_spacenews,supe_customfields三表联查来取得数据。
查询论坛主题,在设置主题分类时,显示出主题分类名称:
SELECT * FROM 数据库名.cdb_threads t, 数据库名.cdb_threadtypes y WHERE t.typeid = y.typeid
查询论坛的主题,并显示版块名称:
SELECT * FROM 数据库名.cdb_threads t, 数据库名.cdb_forums f WHERE t.fid = f.fid
如何调用版块简介:
SELECT * FROM 数据库名.cdb_forums s,数据库名.cdb_forumfields f WHERE s.fid=f.fid
调用模型中图片,标题,内容数据:
SELECT * FROM supe_moviemessage m,supe_movieitems i WHERE m.itemid=i.itemid
supe_[模型英文ID]message 与 supe_[模型英文ID]items 是存储模型信息的主表,添加的字段也会添加在 supe_[模型英文ID]message 里面,将这两个表联起来就可以查询出想要的大部分数据。
如有其他需要请跟帖
我的意思不是调用全部的 就像DEDE的分类那样 有标题图片
|