作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这似乎是一个简单的设置,但我找不到它。我对具有相似列名的表进行内部连接查询。最好在查询结果中包含表名,这样接收数据的人可以更容易地区分。例如:
表 1:ID姓名时间戳
表 2:ID姓名时间戳表1_id
表 3:ID姓名时间戳表2_id
然后我将它们与查询联系在一起:
select * from table1
inner join table2 on table1.id=table2.table1_id
inner join on table2.id=table3.table2_id;
结果具有相似的列标题名称:
id名称时间戳id名称时间戳table1_id id名称时间戳table2_id
很难区分这些数据。当然,示例查询简短、愚蠢且毫无意义。如果我对所有数据进行实际查询,它会变得更加复杂。列标题名称不能包含表名吗?
table1.id table1.name table1.timestamp table2.id table2.name table2.timestamp table2.table1_id table3.id table3.name table3.timestamp table3.table2_id
最佳答案
输出中的列名称不明确:table1.id, table2.id
为列添加别名应该可以解决这个问题:
SELECT table1.id as t1_id, table2.id as t2_id
关于mysql - 如何在 MySQL 查询中包含表名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52084734/
我是一名优秀的程序员,十分优秀!