select fDate,InfoKind,InfoContent,Author from u_studyTime
go
select id,content,fDate,authorName,readerName,parentId,parentId from s_message
go
如上代码!然后显示在一张表里 怎么拼接 求大神解析 小弟跪谢!
根据 fdata 联接
麻烦写个例子呗!
你这个问题问了n遍了
select a.*,b.* from u_studyTime a, s_message b
你直接把这条语句复制到数据库 就可以了查询了
我要的是 某个表的 某个列啊 !就是比如表A 我要ID 表B 我要姓名 表D 我要地址 而且表的主键不一样 怎么拼!
select a.*,b.* from u_u_studyTime, s_message where u_studyTime.fdata=s_message.fdata
没有任何联系的两条数据 连起来也没有什么意义啊
三楼回答正确
select a.*,b.* from
(select fDate,InfoKind,InfoContent,Author from u_studyTime) a
inner join
(select id,content,fDate,authorName,readerName,parentId,parentId from s_message) b
on a.fdata = b.fdata
select A from A
union all
select B from B
inner left