SQLiteの列名にルールはありますか?
http://www.sqlite.org/lang_keywords.html 完全なリストがあります!楽しい!
「/」のような文字を使用できますか?
すべての例は、Linuxで実行されているSQlite 3.5.9からのものです。
列名を二重引用符で囲むと、次のことができます。
> CREATE TABLE test_forward ( /test_column INTEGER );
SQL error: near "/": syntax error
> CREATE TABLE test_forward ("/test_column" INTEGER );
> INSERT INTO test_forward("/test_column") VALUES (1);
> SELECT test_forward."/test_column" from test_forward;
1
とはいえ、おそらくこれを行うべきではありません。
次の回答はSQLiteソースコードに基づいており、主にparse.y
(レモンパーサーの入力)ファイルに依存しています。
CREATE TABLE
ステートメントで列名とテーブル名に使用できる一連の文字は、
'
-エスケープされた任意の種類の文字列(キーワードも含む)INDEXED
は非標準であるためJOIN
は、私にはわからない理由で。SELECT
ステートメントの結果列に許可される一連の文字は、
AS
の後に書かれた列エイリアスとして使用された場合、上記のすべてCREATE TABLE
列の構文を見てみましょう
// The name of a column or table can be any of the following:
//
%type nm {Token}
nm(A) ::= id(X). {A = X;}
nm(A) ::= STRING(X). {A = X;}
nm(A) ::= JOIN_KW(X). {A = X;}
より深く掘り下げると、
// An IDENTIFIER can be a generic identifier, or one of several
// keywords. Any non-standard keyword can also be an identifier.
//
%type id {Token}
id(A) ::= ID(X). {A = X;}
id(A) ::= INDEXED(X). {A = X;}
「一般的な識別子」はなじみがないようです。 tokenize.c
をざっと見てみると、定義がわかります
/*
** The sqlite3KeywordCode function looks up an identifier to determine if
** it is a keyword. If it is a keyword, the token code of that keyword is
** returned. If the input is not a keyword, TK_ID is returned.
*/
/*
** If X is a character that can be used in an identifier then
** IdChar(X) will be true. Otherwise it is false.
**
** For ASCII, any character with the high-order bit set is
** allowed in an identifier. For 7-bit characters,
** sqlite3IsIdChar[X] must be 1.
**
** Ticket #1066. the SQL standard does not allow '$' in the
** middle of identfiers. But many SQL implementations do.
** SQLite will allow '$' in identifiers for compatibility.
** But the feature is undocumented.
*/
識別子文字の完全なマップについては、tokenize.c
を参照してください。
result-column
に使用できる名前(つまり、SELECT
ステートメントで割り当てられた列名またはエイリアス)はまだ不明です。 parse.y
はここでも役に立ちます。
// An option "AS <id>" phrase that can follow one of the expressions that
// define the result set, or one of the tables in the FROM clause.
//
%type as {Token}
as(X) ::= AS nm(Y). {X = Y;}
as(X) ::= ids(Y). {X = Y;}
as(X) ::= . {X.n = 0;}
有効なフィールド名には、有効なテーブル名と同じ規則が適用されます。これをSQlite管理者に確認しました。
これらに固執し、エスケープは不要であり、将来の問題を回避することができます。
二重引用符で囲んだ「不正な」識別子名を除く"identifier#1"
、[
前と]
作業後も[identifire#2]
。
例:
sqlite> create table a0.tt ([id#1] integer primary key, [id#2] text) without rowid;
sqlite> insert into tt values (1,'test for [x] id''s');
sqlite> select * from tt
...> ;
id#1|id#2
1|test for [x] id's