使用 Sqlite3 创建完整标题的 slug 版本
我有一个 sqlite3 数据库表。我添加了一个名为 title_slug 的列。我想获取 title 列的内容,并使用 slug 版本更新新的 title_slug 列。我可以直接从 sqlite3 执行此操作还是必须在程序外部对其进行编码?
I have a sqlite3 database table. I added a column called title_slug. I want to take the contents of title column, and update the new title_slug column with a slug version. Can I do this straight from sqlite3 or do I have to code it outside of the program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,SQLite 中没有循环。
一个不太通用的解决方案可能是:
但是您必须添加许多字符来替换?!
first of, there are no loops in SQLite.
A not very generic solution could be:
but you would have to add many chars to replace ?!