Question : Example of Union query with 3 views (3 queries)needed

Can someone give me an example of a union query of three view (or 3 queries)  i can produce a result when using two but when I brin in the third it (obviously) tells me that the field could refer to more than 1 instance

Answer : Example of Union query with 3 views (3 queries)needed

Not quite sure what you are asking ... but this UNION's 3 tables together:

SELECT Table1.FIELD1, Table1.FIELD2, Table1.FIELD3
FROM Table1
UNION SELECT Table2.FIELD2, Table1.FIELD2, Table2.FIELD3
FROM Table2
UNION SELECT Table3.FIELD2, Table3.FIELD2, Table3.FIELD3
FROM Table3

mx
Random Solutions  
 
programming4us programming4us