sqlite数据库建表的字段名能否使用中文?

2025-01-01 01:25:17
推荐回答(2个)
回答1:

E:\SQLite>sqlite test.db
SQLite version 3.7.15 2012-12-12 13:36:53
Enter ".help" for instructions
Enter SQL statements terminated with a ";"

sqlite> create table '中文表' ( '中文列' int );
sqlite> insert into '中文表' VALUES (100);
sqlite> select * from '中文表';
中文列
100
sqlite>

可以的是可以的, 只是不推荐.
因为写 SQL 语句的时候, 还要来回切换输入法, 也是一件郁闷的事情啊。

回答2:

最好不要使用中文.