Q1
True / FalseSQL Server INSERT allows adding multiple rows in one query.
SQL Server supports inserting multiple rows with a single INSERT INTO statement.
Q2
True / FalseThe INSERT INTO statement in SQL Server requires specifying column names.
Specifying column names in the INSERT INTO statement is optional if values for all columns are provided.
Q3
True / FalseSQL Server's INSERT INTO statement can insert data into a table without specifying column names.
If you provide values for all columns in the correct order, specifying column names is not required.
Q4
True / FalseINSERT INTO can be used to copy data from one table to another.
The INSERT INTO statement can copy data from one table to another using a SELECT statement.
Q5
True / FalseThe SQL Server INSERT statement requires explicit column names when inserting data.
Column names are only required if you are not inserting values for every column.
Q6
True / FalseYou cannot use the INSERT INTO statement to insert data into a view.
In SQL Server, it is possible to insert data into a view if the view is updatable.
Q7
True / FalseSQL Server's INSERT INTO statement supports inserting data into tables with identity columns.
Identity columns are automatically populated and do not need to be included in the INSERT statement.
Q8
True / FalseYou must specify the default values for columns in the INSERT INTO statement.
Default values for columns are set automatically if not specified in the INSERT statement.
Q9
True / FalseThe INSERT INTO statement cannot insert data into tables with primary key constraints.
You can insert data into tables with primary key constraints as long as the primary key values are unique.
Q10
True / FalseYou can use the OUTPUT clause with the INSERT INTO statement to return inserted rows.
The OUTPUT clause can be used to return inserted rows or affected rows during an INSERT operation.
Q11
True / FalseYou can use INSERT INTO to add rows with NULL values for columns without a NOT NULL constraint.
NULL values can be inserted into columns that do not have NOT NULL constraints.
Q12
True / FalseYou cannot use INSERT INTO with a subquery.
INSERT INTO can use a subquery to insert data from another table or query result.
Q13
True / FalseThe INSERT INTO statement can include a SELECT statement to insert data into multiple tables.
INSERT INTO with SELECT can insert data into one table or multiple rows in a single table but not into multiple tables.
Q14
True / FalseThe INSERT INTO statement in SQL Server cannot insert data into tables with computed columns.
Computed columns are calculated based on other columns and do not need to be included in INSERT statements.
Q15
True / FalseSQL Server supports inserting data using the INSERT INTO statement into partitioned tables.
You can insert data into partitioned tables in SQL Server just like regular tables.