动态 MySQL 表
是否可以在MySQL中创建动态使用另一个表中的其他列的表(与在PHP中扩展类的想法相同)。示例:
table1
table1_id
column1
column2
column3
table2
table2_id
column4
column5
因此,当我查询 table2 时,我会获取 table1 中的所有列,如下所示:
SELECT table1_id,column1,column2,column3,table2_id,column4,column5 FROM table2;
Is it possible in MySQL to create tables that use other column from another table dynamically (same idea as extending a class in PHP). Example:
table1
table1_id
column1
column2
column3
table2
table2_id
column4
column5
So when I query table2 I get all the columns from table1 like:
SELECT table1_id,column1,column2,column3,table2_id,column4,column5 FROM table2;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为类似的东西就是您正在寻找的。
Something like that is what you are looking for I think.