|
|
|
postgresql ถ้าจะเก็บค่า null จะ insert ข้อมูล ประเภท real จะต้อง ทำยังไงบ้างครับ มีตัวอย่างโค๊ดมัยครับ |
|
|
|
|
|
|
|
ทำไงก้อยังทามม่ะได้ หรือว่าต้องเปลียนตัวแปรไปอย่างอื่น
|
|
|
|
|
Date :
2012-03-22 10:03:27 |
By :
nonoomhi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
insert into test(id,test) values('1','NULL');
ผมลองสร้างดู แล้ว ตรงtestผมset ให้เปงประเภท real ลองดูแล้วไม่ได้
ERROR: invalid input syntax for type real: "NULL"
LINE 1: insert into test(id,test) values('1','NULL');
^
********** Error **********
แต่ลองเปลียนเปง
insert into test(id,test) values('1',NULL);
มันก้อได้
อยากให้เปลียน ค่าว่างให้ เป็น NULL ครับ
|
|
|
|
|
Date :
2012-03-22 10:37:06 |
By :
nonoomhi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|