mysql/sql 服务器:选择@@identity
mysql 和 sql server 这两个数据库的运行方式有什么不同吗?
SELECT @@identity
is there a difference in the way this functions between the two databases mysql and sql server:
SELECT @@identity
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我更喜欢 SQL Server 中的 SCOPE_IDENTITY() 以避免触发器出现问题。
I prefer SCOPE_IDENTITY() in SQL Server to avoid issues with triggers.
是的:由于这似乎不在 ANSI SQL 标准中,因此 DBMS 供应商可以自行推出自己的方法。
Yes: Since that doesn't appear to be in the ANSI SQL standard, it is left to the DBMS vendor to roll their own methods.