monkeypaw201 Posted August 12, 2008 Share Posted August 12, 2008 I assume there is a way to do something like: INSERT INTO `table`, `column` = ''value" But i can't find the syntax anywhere.. I know the usual method is INSERT INTO `table` VALUES('value') but i need to do it the first way Link to comment https://forums.phpfreaks.com/topic/119252-solved-weird-insert-method/ Share on other sites More sharing options...
PFMaBiSmAd Posted August 12, 2008 Share Posted August 12, 2008 See the second method shown in the manual - http://dev.mysql.com/doc/refman/5.0/en/insert.html INSERT INTO tbl_name SET col_name=expr Link to comment https://forums.phpfreaks.com/topic/119252-solved-weird-insert-method/#findComment-614258 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.