変更値(DATE、ブール値など)のSQLの値を分割してみます。たとえば、次の値があります。
('im a value','im a second value with, test',478,20/05/2010 16:56:32)
値を分割する方法は、4 つの値しかありませんでした:
- 「私は価値がある」
- 'im a second value with, test'
- 478
- 2010/05/20 16:56:32
5つの値ではありません:
- 「私は価値がある」
- 'im は 2 番目の値です
- テスト'
- 478
- 2010/05/20 16:56:32
ありがとう
編集:
新しい例:
INSERT INTO ACCES (id,type,com, date,make) VALUES (478,'action','test commentaire, new test',20/05/2010 16:56:3,False);
結果
INSERT INTO ACCES (id,type,com, date,make) VALUES (478,'action','test commentaire, new test',1274367363,0);