如何在SQL中删除所有没有孩子的父母?
我有一个表,其中包含 id、名称、级别(深度)和 parrent_id,有没有什么好方法可以删除没有任何子节点的所有节点? (在一个层面上就足够了)? 我知道我可以在应用程序中执行此操作 - 加载给定级别上的所有节点并检查它们是否有子节点(如果没有删除),但这在 SQL 中可能更有效,而且我不是 SQL 大师:)
I have a table that has id, name, level (the depth) and parrent_id, is there any nice way to remove all nodes without any children? (On one level suffices)?
I know I can do it in application - load all the nodes on given level and the check if they have children, if not remove, but this whould probably be more effective in SQL and I'm not SQL guru :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试
更好的是尝试
You could try
Even better would be to try
这应该可以完成工作
This should do the job