SQLite 中的查询反射?

发布于 2024-10-30 06:31:47 字数 324 浏览 0 评论 0原文

假设我有一个 SQLite 表,其中有一列存储查询,如下所示:

sqlite> create table foo (queries text);
sqlite> insert into foo values ('select "Hello";');

有没有办法从 foo 中检索存储的 select "Hello"; 然后评估它(作为子查询)在同一个查询中

Lisp-y 的等价物类似于:(apply (select-from-foo))

Let's say I have a SQLite table with a column that stores queries, like so:

sqlite> create table foo (queries text);
sqlite> insert into foo values ('select "Hello";');

Is there any way to retrieve the stored select "Hello"; out of fooand then evaluate it (as a subquery) in the same query?

The Lisp-y equivalent would be something like: (apply (select-from-foo))

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃酥萝莉 2024-11-06 06:31:47

不会。查询在执行之前由 sqlite3_prepare 编译。

No. Queries are compiled by sqlite3_prepare before they are executed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文