what is the out put?
Posted
by user329820
on Stack Overflow
See other posts from Stack Overflow
or by user329820
Published on 2010-05-01T08:33:33Z
Indexed on
2010/05/01
8:37 UTC
Read the original article
Hit count: 189
Hi this is my code but when I run it in mysql it will show an error because of datatype but my friend checked it with sql server and it doesn't show error and also insert the value: 32769 .which of them is correct?
CREATE TABLE T1 (A INTEGER NOT NULL);
INSERT T1 VALUES (32768.5);
© Stack Overflow or respective owner