Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我第一次创建一个插件 :) 这需要自己的表,并将使用 postid 作为键。现在事情似乎很好,但只有一个问题是..
我想postid从posts表复制到表postid中counter。如何编写查询以仅复制一次。我有新帖子的写入功能,因此它会在创建新帖子但旧帖子时添加postid到counter表格中。
postid
posts
counter
我只知道基本的简单查询,但这对我来说很复杂,需要帮助。请
以下 sql 应该可以解决问题,前提是 counter 为空,并且您为 counter 中的其他字段设置了默认值
insert into counter(postid) select postid from posts