2009-11-25 51 views

回答

3

你已經基本上得到了它:

你可以這樣做:

SELECT * FROM `table` 
where `title` like (SELECT column FROM tableb WHERE id=case) 
0

我發現它

select * from table where title like '%'+ select from tableb +'%' 
0

你應該使用這樣

select * from table where title like (select column from tableb);