日期:2014-05-16  浏览次数:20561 次

select语法错误
select a.au_fname+a.au_lname 
from authors a,titleauthor ta (
     Select title_id,title 
     from titles 
     Where ytd_sales>10000 
     ) AS t 
Where a.au_id=ta.au_id 
AND ta.title_id=t.title_id 

服务器: 消息 156,级别 15,状态 1,行 3
在关键字 'select' 附近有语法错误。
服务器: 消息 170,级别 15,状态 1,行 6
第 6 行: ')' 附近有语法错误。

找不出哪错了,请帮忙啊

------解决方案--------------------
想这种写法,最好改成inner join