Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
165 views
in Technique[技术] by (71.8m points)

Escape table name of attached database in SQLite?

According to this answer, you can escape a table name by putting double-quotes around it. The SQLite documentation further states that brackets and back-ticks are also possible for compatibility with other systems.

This works on tables from the current database, however, when I try to do this on an attached database I get an error:

ATTACH db2 AS x; SELECT * FROM "x.table1";

yields the error:

no such table: x.table1

If I remove the "x." and run the query directly on database db2, it works.

So how do I escape the table name when it is part of an attached database?

I have tried the brackets and backticks, and I have also tried quoting only the table name and not the "x." part, e.g. all of the following:

ATTACH db2 AS x; SELECT * FROM `x.table1`;
ATTACH db2 AS x; SELECT * FROM [x.table1];
ATTACH db2 AS x; SELECT * FROM x."table1";
ATTACH db2 AS x; SELECT * FROM x.`table1`;
ATTACH db2 AS x; SELECT * FROM x.[table1];

None of these work.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Works for me:

select * from "x"."table1";


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...