MySQL Select rows that from table01 that doesn't exist on table02 [duplicate]
问题 This question already has answers here : Find records from one table which don't exist in another (8 answers) Closed 10 months ago . I have two tables, table03 have 10 rows and table01 have 21 rows, now I want to get rows from table03 where they don't exist in table01, so far I wrote this query but it shows all rows of table03 even some rows doesn't exist on table01. SELECT T3.`DateAdded`, T3.`Query_name`, T3.`Fund`, T3.`Ticker` FROM `table_name03` T3 LEFT JOIN `table_name01` T1 ON T3.