CREATE
ALGORITHM = UNDEFINED
VIEW `events`
AS
Select column1 AS Creator, column2 AS date, column3 AS link from table1
UNION
Select column1 AS Creator, column2 AS date, column3 AS link from table2
UNION
Select column1 AS Creator, column2 AS date, column3 AS link from table3
order by date DESC Limit 0,10