sql show table name in result

Solutions on MaxInterview for sql show table name in result by the best coders in the world

showing results for - "sql show table name in result"
Thiago
24 Feb 2019
1select ID, 'Actor' as Career, Name from Actor
2union all
3select ID, 'Singer' as Career, Name from Singer
4