select a. id, a. name, a.address, b.class, (a.phone+'/'+b.qq) lxfs from stuinfo a, sydinfo b where a.id=b.id作者: 二小傻 时间: 2014-4-26 13:39
select a. id, a. name, a.address, b.class, (a.phone || '/' || b.qq) lxfs from stuinfo a, sydinfo b where a.id=b.id 拼接字符串不是用双竖线么作者: 程序爱好者 时间: 2014-4-26 13:48
是SQL Server 吗
select stuinfo.id,stuinfo.name ,address,calss,phone+'\'+qq as lxfs from stuinfo,sydinfo
where stuinfo.id=sydinfo.id
我很久没玩过这个了 不看看是不是这样