select name from 
(select name from table1
union
select name from table2
union
select name from table3
union 
select name from table4)
group by name

解决方案 »

  1.   

    select name from table1
    union
    select name from table2
    union
    select name from table3
    union
    select name from table4;
      

  2.   

    select distinct name from 
    (select name from table1
    union
    select name from table2
    union
    select name from table3
    union 
    select name from table4)
    group by name
      

  3.   

    SELECT name
    FROM table1
    INTERSECT
    SELECT name
    FROM table2
    INTERSECT
    SELECT name
    FROM table3;