Hi,
yes you must use custom SQL to ingore a column.
The syntax for INSERT is:
INSERT INTO <your table> (col1, col2......) VALUES(value for col1, col2.....)
The syntax for Update is:
UPDATE <your table> SET col1=value for col1, col2= etc... WHERE <prim. key col>=some value
The syntax for Delete is:
DELETE from <your table> WHERE <prim. key col>=some value
IF you are using DB like SQL Server or Oracle, you can use Stored Procedures, but writing store procedures is more complex and
the syntax depends on the DB system.
You must replace the Value(s) part with the GeniusConnect parameters, please see for more info help topic:SQL Commands