1

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?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
thanos_zach
  • 156
  • 4
  • 20

1 Answers1

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