需要有关 sql 查询的帮助
我是 Oracle/PL SQL 的新手。我有 2 个表 A 和 B。 A 有列 CustId、Age、Location 和 Date。表 B 有 2 列 CustId、CustName。
显示给定年龄的 CustName 和位置的 sql 查询是什么?
谢谢。
am a newbie to Oracle/PL SQL.I've 2 tables A and B.
A has a column CustId,Age,Location and Date. Table B has 2 columns CustId,CustName.
What would be the sql query to show show CustName and Location for a given age?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的问题:“在给定年龄段显示custname和位置的SQL查询是什么?”帮助您很好地定义查询:
我们需要在选择特定字段的选择之上,确保将两个表加入他们的公共列(CustId)上。
另一个选择是避免在哪里说明:
your question "What would be the sql query to show show CustName and Location for a given age?" helps define your query pretty well:
All we need to do on top of that select for your specific fields is make sure to join the two tables on their common column (CustID).
Another option would be to avoid the WHERE statement:
您需要
加入
。类似的东西you need
join
. something like