I have a table table1 (id integer, Name varchar, Age integer)
While inserting rows into the table I use two statements.
INSERT INTO TABLE1('1','John','33');andINSERT INTO TABLE1(1,'John',33);
Both of them work fine. In the first insert statement I have used the value between single quote for the integer datatype as well.
Can I know what can be the difference between both of the statements?