I have a task to do synchronizing view with table in phpmyadmin. As example, I have a view table like this:
VIEW:
TABLE:
the data records of table is same as view. I copy the data from view to table using
CREATE TABLE tablename AS (SELECT * FROM viewname)
I want to synchronize them. As example, when view is updated then table will be updated too. The meaning of view's updating is like editing the view then I import the view again by deleting the old one. Is there any way to do that? I want to synchronize the view and the table because the time took so long when I open the view. So I made table which is same as view so that I'm able to open it faster. Thanks in advance