Is there any way (except views) to create a new table in mysql that combines data from three or more different tables and when inserting new records into the initial tables data are also displayed in the new merged table?
Asked
Active
Viewed 29 times
1 Answers
2
Introduction
One thing though except for views, would be to use triggers.
When an update is made on this new table, your on insert
or on update
triggers could call a stored procedure to update the related data.
How to Pages:
See the following related pages:

Menelaos
- 23,508
- 18
- 90
- 155