Jump to content

Union And Tables Query


ProblemHelpPlease

Recommended Posts

You would need to add another field to hold the table name, it's not going to do it automatically. e.g.SELECT field1, field2, field3, 'from table1' AS field4 FROM table1UNIONSELECT field1, field2, field3, 'from table2' AS field4 FROM table2

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...