By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
Create table testa( x Double)
INSERT INTO testa VALUE (983,469);
Column count doesn't match value count at row 1
INSERT INTO testa VALUE (983.469);
SELECT * FROM testa;
x |
---|
983.469 |