+4  A: 

Try this.

SELECT Name, u_country, u_postcode FROM user 
WHERE u_postcode NOT IN (SELECT d_postcode FROM data)

Hope it helps

Jerry
Correct one result
Karthik
@jerry: can i use another subquery or AND NOT EXISTS ? i'm affraid IN will be problem in performance. any idea?
apis17
anyway this code works. thanks..
apis17
pls see updates:
apis17
if i put GROUP BY u_postcode, the u_country for Name 3 will be blank. how to display Name3 and Name4 as unique?
apis17
ok nvm, i solved uniqe problem using SELECT DISTINCT command. thank you all.
apis17