I want to show data where data is not in other tables.

I want to show data where data is not in other tables.

Use a sub query.
SELECT a.*
FROM tabel_a a
WHERE a.id NOT IN (SELECT b.id FROM tabel_b b)
Output
id name
1 aa
2 bb
SQL Fiddle: http://sqlfiddle.com/#!9/8d5a32/6/0