The insert statement is used, obviously, to add
new rows to a table The comma-delimited list of values must match the table structure exactly in the number of attributes and the data type of each attribute. Character type values are always enclosed in single quotes; number values are never in quotes; date values are often (but not always) in the format in the format that the database vendor defaults.
Note: Need to make sure that if you are inserting records into a pre-existing table, that you have a one to one column mapping with the source columns and the target columns. |