问题描述
select a.title title,a.url url,a.thumb thumb,a.tjtitle tjtitle,a.description description from v9_news a left join v9_category b on a.catid=b.catid left join v9_category c on b.catcode like concat('%',c.catcode,'%') left join v9_position_data d on a.id=d.id where c.catid=249 and a.status=99 and d.posid=54 and a.thumb!='' order by a.updatetime desc a.title title是什么意思?from v9_news a 是什么意思?水平比较菜,大家别喷 问题补充:qq642617822 写道
解决方案
就是起个别名啊。。。。。from v9_news a给表v9_news起别名a ,有个用到as v9_news as aa.title 就是表v9_new的字段titlea.title title 给a.title起个别名为 title
解决方案二:
LZ 多看看SQL方面的资料
解决方案三:
a.title title 的意思是查询显示a.title这个字段给此字段起个别名 titlefrom v9_news a 的意思是从v9_news 这张表中查询 给这张表起个别名 a
解决方案四:
就是起别名 相当于你给 表或者字段 一个别的名字, 你用本名和别名是一样的
时间: 2024-09-18 08:28:24