Jump to content

[SOLVED] PHP SQL statements: =s or VALUES


xtopolis

Recommended Posts

Hi,

 

Is there a reason for using one of the methods to form SQL statements over another?  The two I know are:

 

$sql = "INSERT INTO table SET COL1='$col1', COL2='$col2'";

 

vs

 

$sql = "INSERT INTO table (COL1, COL2) VALUES ('$col1', '$col2')";

 

Any reason, or are they just personal preference?

Link to comment
https://forums.phpfreaks.com/topic/118192-solved-php-sql-statements-s-or-values/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.