SQL:插入记录不按顺序
将记录插入表中时遇到问题。
每个 parking_cost 都插入在其相关记录之后。应该有它的记录。为什么会发生这种情况?
有什么想法吗?
问候。
I am having a problem while a record is inserted into a table.
each parking_cost is inserted after its related record. It should be with its record. why is this happening?
Any ideas ?
Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在执行两个单独的查询来填充表中的行,则第一个查询需要是 INSERT,第二个查询需要是 UPDATE,例如:
那么
INSERT 将始终创建新行;对同一逻辑实体的两个 INSERT 查询将产生两个单独的行,如屏幕截图中所示。
更新:重新阅读该查询,您可能会遇到类似的问题
If you are doing two separate queries to populate the row in the table, the first query needs to be an INSERT, the second query needs to be an UPDATE, eg:
Then
An INSERT will always create a new row; two INSERT queries for the same logical entity will result in two separate rows like you have in the screenshot.
Update: re-reading that query, you're probably after something like