MySQL 或 SQLite 是否支持“插入或更新”?声明?
如果我没记错的话,“INSERT OR UPDATE”语句在 Oracle 中可用。如果主键不存在,则可以创建新行,否则可以更新该行。或者只能使用某些存储过程或存储函数?
The "INSERT OR UPDATE" statements are available in Oracle if i am not wrong. The possibility to create a new row if the primary key doesn't exists or update that row otherwise. Or is it only possible using some Stored Procedure or Stored Function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MySQL:
对于 SQLite,您可以使用 ON CONFLICT REPLACE
- 请参阅 http://www.sqlite.org/lang_conflict.html
MySQL:
For SQLite, you would use ON CONFLICT REPLACE
- See http://www.sqlite.org/lang_conflict.html