sql交叉连接查询
我有更多的表想要交叉连接它们,并且我想显示每个表的字段如下:
tb1.filed1 tb1.filed2 tb2.filed1 .....
我该怎么办?我如何选择包含表名称等详细信息的字段。
谢谢....
I have more tables that I want to cross join them and I want to show each table with fields like this:
tb1.filed1 tb1.filed2 tb2.filed1 .....
What should I do? How can i select fields with details like it's table's name.
thanks....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用列别名,就像您给它另一个名称一样:
但是,我建议您使用更具描述性的名称。也许像
The easiest way is to use column aliasing, the same way you'd give it another name:
I would recommend, however, that you use more decriptive names. Perhaps something like
使用别名来给出有意义的描述......例如
Use aliases to give a meaningful description... for example