相关疑难解决方法(0)

存储在 SQLite 整数列中的文本字符串?

我是一个数据库新手,正在查看似乎将文本存储在整数列中的 SQLite 数据库。这是 sqlite3 命令行中的示例会话:

sqlite> .schema mytable
CREATE TABLE mytable (
    id              integer primary key,   /* 0 */
    mycol           integer not null,      /* 1 */
);

sqlite> SELECT mycol FROM mytable;
here is some text
here is more text
[...]
it's text all the way down
Run Code Online (Sandbox Code Playgroud)

我糊涂了。是什么赋予了?

sqlite integer unicode

9
推荐指数
1
解决办法
1万
查看次数

标签 统计

integer ×1

sqlite ×1

unicode ×1