SQLite 流在 SQL 中的构造?
借助 MSSQL,我可以在 SQL 代码中混合使用 case、if...then 和 while 构造。 SQLite 有类似的东西吗?我在任何地方都没有看到任何关于与 SQLite 进行“程序混合”的内容。
谢谢。
With MSSQL, I can mix in case, if...then, and while constructs in my SQL code. Is anything similar available for SQLite? I have not seen anything on "mixing procedurally" with SQLite, anywhere.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQLite 没有任何循环语法 -
FOR
或WHILE
。支持CASE
语句而不是 IF。SQLite doesn't have any loop syntax -
FOR
orWHILE
.CASE
statements are supported rather than IF.