如select id,name,age,functionno from useinfo a
inner join userfunction a.id=b.id where 1=0
我想要的结果是:(动态查询出来的所有的字段)
cloumname
id
name
age
functionno
说的再详细点吧LZ。。。你遇到什么问题?
select u.id,u.name,u.age,u.functionno from useinfo a
inner join userfunction as u on a.id=u.id where 1=0
你这个不能满足要求?问题描述不清楚。where 1=0?那不是什么都查不出来?
能不能在详细点?比如初始状态是什么,想要的结果是什么。
按照你的思路可以这么写:select a.id,a.name,a.age,u.functionno from useinfo as a inner join userfunction as u on a.id=u.id where 1=0 .
其中a是表userinfo的别名,u是表userfunction的别名。 on a.id=u.id是连接条件。
我有点不明白的是你:where 1=0 是什么意思呢。
where 1=0 就是让你查不出来数据