创建存储过程,在 H2 数据库的嵌套集中添加节点
我有一个 sql,将用于为嵌套集添加节点,这是我的 sql 从nested_category中选择@myRight := rgt WHERE 名称 = '电视';
更新nested_category SET rgt = rgt + 2 WHERE rgt > @我的权利; 更新nested_category SET lft = lft + 2 WHERE lft > @我的权利;
插入nested_category(name, lft, rgt) VALUES('游戏控制台', @myRight + 1, @myRight + 2);
通常我可以把它放在存储过程中,但是H2不支持创建过程,似乎解决方案是使用带有创建别名的java函数。任何人都可以帮我吗?
I have a sql that will be use to add a node for nested set,this is my sql
SELECT @myRight := rgt FROM nested_category
WHERE name = 'TELEVISIONS';
UPDATE nested_category SET rgt = rgt + 2 WHERE rgt > @myRight;
UPDATE nested_category SET lft = lft + 2 WHERE lft > @myRight;
INSERT INTO nested_category(name, lft, rgt) VALUES('GAME CONSOLES', @myRight + 1, @myRight + 2);
Normally i can put this in stored procedure, but create procedure is not supported in H2, it seems like the solution was to use java function with create alias. Can anyone please help me out here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抱歉回复晚了。问题是,您没有添加
h2
标签,因此问题没有出现在我的列表中。Sorry for the late answer. The problem was, you didn't add the
h2
tag, so the question didn't show up on my list.