<cfquery> INSERT INTO table VALUES (1,2,3) </cfquery>
<cfquery> INSERT INTO table (one,two,three) VALUES (1,2,3) </cfquery>
Many old school database developers prefer to leave out the column list in the INSERT INTO statement. While this is syntactically correct (providing your value list is in the correct order) on most RDBMS's, it makes it very difficult to maintain the code, and can lead to bugs. To use this method you must ensure that the value list is in the order that the database columns were defined in, which is a bug prone task to complete every time you want to add data to a table.