Not sure if this is what you're looking for, but if you have a column's default value set, like, for example: ColumnName CHAR(100) NOT NULL DEFAULT 'omglol' -- the default value will only be used if you insert a null (or nothing) to this column. Anything other than null will be entered into the...