【发布时间】:2016-03-26 20:01:57
【问题描述】:
aid | name udi | aid | name | description
------------------------ -------------------------
1 text 1 1 text text
我想将这些表合并到一个表中(实时更新)
如何使用这样的索引来做到这一点:
aid | aname | uid | uname | udescription
【问题讨论】:
-
create view . . . from t1 join t2 on t1.aid = t2.aid.
标签: mysql sql join indexing view