The problem is that you will most likely not get the results you want. I suggest you create a query (or view) like this:
SELECT `tm_name`, `date`, 't1' AS TableName FROM t1
UNION
SELECT `tm_name`, `date`, 't2' AS TableName FROM t2
-- and so on
pritaeas
Posting Prodigy
9,310 posts since Jul 2006
Reputation Points: 1,178
Solved Threads: 1,465
Skill Endorsements: 86
When you list multiple table names after the FROM keyword, you are essentially creating JOINing tables. Based on your description, it sounds like you are trying to query multiple tables with the same information to produce one result set. For this type of scenario, I would suggest that you use the UNION keyword seperated by your different SELECT statements. For example...
SELECT tm_name FROM table1
UNION
SELECT tm_name FROM table2
UNION
SELECT tm_name FROM table3
JorgeM
Industrious Poster
4,023 posts since Dec 2011
Reputation Points: 297
Solved Threads: 548
Skill Endorsements: 115
As pritaeas said, I'd recommend adding a table idetifier column, since that is the only way of identifying which table is every row from.
Nichito
Posting Virtuoso
1,722 posts since Mar 2007
Reputation Points: 424
Solved Threads: 73
Skill Endorsements: 3