帝国cms使用灵动标签同时调用新闻和文章等多个表的头条等内容

灵动标签同时调用多个表的最新内容,多个表用“union”连接:

[e:loop={‘select * from (
select id,classid,titleurl,filename,title,newstime,titlepic from [!db.pre!]ecms_movie where newstime union
select id,classid,titleurl,filename,title,newstime,titlepic from [!db.pre!]ecms_news where newstime union
select id,classid,titleurl,filename,title,newstime,titlepic from [!db.pre!]ecms_photo where newstime union
select id,classid,titleurl,filename,title,newstime,titlepic from [!db.pre!]ecms_flash where newstime union
select id,classid,titleurl,filename,title,newstime,titlepic from [!db.pre!]ecms_article where newstime
) a order by newstime desc limitlimit 10′,10,24,1}]
<a href=”<?=$bqsr[‘titleurl’]?>” target=”_blank”><?=$bqr[‘title’]?></a> <br>
[/e:loop]

调用新闻和文章表的头条数据,0指不限有无有标题图片、两个4表示调用4条头条信息、24是指按sql查询:

[e:loop={‘select * from (
select id,classid,titleurl,filename,title,newstime,titlepic from [!db.pre!]ecms_news where firsttitle=1 union
select id,classid,titleurl,filename,title,newstime,titlepic from [!db.pre!]ecms_article where firsttitle=1
) a order by newstime desc limit 4′,4,24,0}]
<a href=”<?=$bqsr[‘titleurl’]?>” target=”_blank”><?=$bqr[‘title’]?></a> <br>
[/e:loop]

实用干货原创整理,转载请注明九九主题出处!本站所有资源均可以下载,qq一键登录购买SVIP更实惠,免注册扫码支付更方便。
九九主题 » 帝国cms使用灵动标签同时调用新闻和文章等多个表的头条等内容