Forum Moderators: coopster
INSERT INTO `newbus` ( 'busid' )
VALUES (
'3'
)
And i got this error message,
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ''busid' ) VALUES (
'3'
)' at line 1
What seems to be the problem? Thanks
The way you do the statement (the pattern) is like this:
Insert into table_name
(columnName1, ColumnName2, ...)
Values (Value1, Value2, ...);