发布网友 发布时间:2022-04-24 17:40
共1个回答
热心网友 时间:2022-04-15 03:37
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 语句的时候, 还要来回切换输入法, 也是一件郁闷的事情啊。