在 SQLite 中使用 PRAGMA 作为获取列名的源
问题:
我想要执行此操作
select name from pragma table_info(my_awesome_table)
但是,它会产生语法错误。我偷偷怀疑这是可能的,但它似乎没有在 SELECT 带有 sqlite 的文档。
Problem:
I want to do this operation
select name from pragma table_info(my_awesome_table)
However, it yields a syntax error. I have the sneaking suspicion this is possible, but it doesn't seem to be documented as usable in the SELECT docs with sqlite.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 SQLite 3.16.0 开始,我们可以使用 PRAGMA 函数
Since SQLite 3.16.0 we can use PRAGMA functions