Du kan blot bruge UNION ALL (for at få alle rækker, selvom de gentages i begge tabeller) eller UNION for at få ikke-gentagende rækker.
SELECT name,
type,
avesls
FROM table1
UNION ALL
SELECT name,
type,
avesls
FROM table2
Læs mere om UNION på MSDN
.