ok, suppose we have 3 or more let's say "k" tables with the same structure:
table 1:
id customer_id
1 35
2 36
3 37
table 2:
id customer_id
1 35
2 38
3 39
...
table k:
id customer_id
1 35
2 69
3 52
how can i select all the customer_id present in all my tables ( in other words: the intersection ), in this example if there are 3 tables the result should be like this
id customer_id
1 35
I'll be very grateful if any one could please help