运算符 *= 的含义是什么?
可能的重复:
SQL:=* 是什么意思?
大家好,
我得到了某人制作的一个设计,他指出了以下 SQL 之一:
Select * from table_A, table_B 在哪里 table_A.ID *= table_B.ID
谁能告诉我“*=”运算符代表什么?
谢谢。
Possible Duplicate:
SQL: What does =* mean?
Hi all
I got a design someone made and he stated the following on one of the SQLs:
Select * from table_A, table_B
Where
table_A.ID *= table_B.ID
Can anyone tell what does '*=' operator stands for?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这相当于 mySql 中的左连接。它只是使用较旧的(更奇怪的)语法。
和这个是一样的:
That is equivalent to a left join in mySql. It's just on older (weirder) syntax.
It's the same as this: