我正在尝试使用内部连接在嵌套语句中进行计数
select a.app_id, a.first_name, a.last_name, d.svd_id
from wwhs_app a inner join
wwhs_svc d on a.app_id = d.app_id
where a.app_id in(
select top 50 app_id
from wwhs_app
Where app_create_dt > '2012-07-23 00:00:00')
我也需要计算 svd_id,但每次尝试都会出错。建议?