解释一下USING命令
看看...
http://search. mysql.com/search?site=refman-41&q=using&lr=lang_en
MySQL 官方网站没有解释 USING 命令。
请问你能做到吗?
Take a look...
http://search.mysql.com/search?site=refman-41&q=using&lr=lang_en
The official MySQL site doesn't explain the USING command.
Can you do that please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
USING 是连接语法中 ON 关键字的变体。 此链接详细解释了它。 在示例中,查询
与
USING is a variation of the ON keyword in join syntax. This link explains it in detail. In the example, the query
is identical to
它用于 JOIN:
MySQL:12.2.8.1。 JOIN 语法
"USING(column_list) 子句指定两个表中都必须存在的列的列表。如果表 a 和 b 都包含列 c1、c2 和 c3,则以下联接会比较两个表中的相应列”。
It's used for JOINs:
MySQL: 12.2.8.1. JOIN Syntax
"The USING(column_list) clause names a list of columns that must exist in both tables. If tables a and b both contain columns c1, c2, and c3, the following join compares corresponding columns from the two tables."
它用于 JOIN,我想你可以在 这里有关它的更多信息。
It is used in JOINs, I think you can get here some more information about it.