I selected data from multiple table with query:
SELECT * FROM TABLE1
UNION ALL
SELECT * FROM TABLE2
When I deleting data I want to see to which table the row is belonging to. I want to know is there a way to set table name to each row while retrieving data. I dont want to add new column with table_name to a table. Any Idea?