Simplemente puede usar UNION ALL
(para obtener todas las filas incluso si se repiten en ambas tablas) o UNION
para obtener filas que no se repiten.
SELECT name,
type,
avesls
FROM table1
UNION ALL
SELECT name,
type,
avesls
FROM table2
Más información sobre UNION
en MSDN
.