試験からdate_start
~ e$ sqlite3
SQLite version 3.7.5
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table test (dt);
sqlite> insert into test values (22222222);
sqlite> select strftime("%Y-%m-%d",dt) from test;
5613-14-26
sqlite> insert into test values (2222222);
sqlite> select strftime("%Y-%m-%d",dt) from test;
5613-14-26
1372-02-19
sqlite>
sqlite> select substr('2011-03-22 08:00:00.0',1,19);
2011-03-22 08:00:00
sqlite> insert into test values ('2011-03-22 08:00:00.0');
sqlite> select strftime("%Y-%m-%d",substr(dt,1,19)) from test;
5613-14-26
1372-02-19
2011-03-22
選択のstrftime( "%Y-%M-%のD"、DATE_START)から引用符を削除します。それでも動作しません。 - Sagos – lifemoveson
私の追加した例を見てください。 –
ああ私は各行の後にスペースがあります。私の例を見てください。どのようにsqliteでそれから新しい行とタブスペースを削除するには? – lifemoveson