Tech moves fast! Stay ahead of the curve with Techopedia!
Join nearly 200,000 subscribers who receive actionable tech insights from Techopedia.
Insert is a widely-used command in the Structured Query Language (SQL) data manipulation language (DML) used by SQL Server and Oracle relational databases. The insert command is used for inserting one or more rows into a database table with specified table column values. The first DML command executed immediately after a table creation is the insert statement.
A normal insert statement may be implemented in two forms:
Column names identify columns that must be populated with specific values determined by VALUES clause expressions. The number VALUES clause values and names columns is the same. Table columns without specified insert statement values are assigned default values.
Insert operations can result in errors from defined column constraint violations or database inactivity. In both cases, exceptions are thrown and handled by error handlers that set appropriate values for error text, native errors, state and SQL code. If the target insert data column is set to a binary data type, such as BLOB, the input message is also in bit stream form. In rare cases, the input message may be in the Extensible Markup Language (XML) domain, where the message tree is serialized before an insert operation. Insert statements are also used in association with SELECT, WHEN, check options and return clauses.
Join nearly 200,000 subscribers who receive actionable tech insights from Techopedia.