On Friday, 13 March, 2020 20:14, Justin Ng wrote:
>I just encountered something weird with "temp" and "sqlite_master".
>I was wondering if it was another bug, or intentional.
The sqlite_master table in "temp" is called "sqlite_temp_master"
(temp.sqlite_temp_master) even though it responds to
> On Mar 14, 2020, at 03:14, Justin Ng wrote:
>
> This works fine,
>
> SELECT
>x.sql
> FROM
>temp.sqlite_master AS x;
>
As is this:
SELECT
sql
FROM
temp.sqlite_master;
Hmm.
___
sqlite-users mailing list
sqlite-users@mailinglists.sql
I just encountered something weird with "temp" and "sqlite_master".
I was wondering if it was another bug, or intentional.
-
This throws a "column not found" error,
SELECT
sqlite_master.sql
FROM
temp.sqlite_master;
-
This throws a "column not found" error,
SELECT
temp.sqli
3 matches
Mail list logo