SELECT column1 FROM table_1 WHERE EXISTS( SELECT 1 FROM table_2 WHERE column_2 = table_1.column_1);. Note that if the subquery returns NULL, the result of ...
確定! 回上一頁