当前位置: 代码迷 >> Sql Server >> sql语句写法有关问题,还请赐教
  详细解决方案

sql语句写法有关问题,还请赐教

热度:70   发布时间:2016-04-24 21:12:15.0
sql语句写法问题,还请赐教
select name,(select * from aaa where name = 当前name) from aaa

需要怎么写法?

也就是说,我想要嵌套的查询语句的where条件name 等于当前查询的name 


------解决方案--------------------
select name,(select xx from aaa where name = a.name) from aaa a
不能用*吧,只能写一列
------解决方案--------------------
select name,(select 这里只能有一个字段出现 from aaa  b where a.name = b.name) from aaa a
  相关解决方案