注册
找回密码
账号 记住
1983
3
320
0
我给文章模型了添加了地区字段,我想在点开某个城市的文章后,能够在内容页面上显示该省份下的其他城市,不知道这个SQL 标签改怎么写?
select ID,Tid,City,Province from KS_Article where Tid='20102509611162' order by id desc
如果像上面这样写的话,会显示所有的城市,我只想显示该省份下的其他城市,是不是还要调用 省份的那个表? 怎么样才能调用当前省份的其他城市啊?
400
有钱咱也要省着花,没啥要求,用了说一声行不行就行,没加链接,自己看着加吧
select city from ks_province where parentid=(select parentid from ks_province where city=(select city from ks_article where province<>"" and id={$CurrInfoID}))