Q1
True / FalseIn SQL Server, each table column must have a unique name.
Each column in a SQL Server table must have a unique name to avoid ambiguity and ensure data integrity.
Q2
True / FalseA table in SQL Server can have a maximum of 1024 columns.
A table in SQL Server can have a maximum of 1024 columns, which is a limitation set by the database system.
Q3
True / FalseIn SQL Server, a row is also known as a tuple.
In database terminology, a row is often referred to as a tuple.
Q4
True / FalseColumns in a SQL Server table can have different data types.
Each column in a SQL Server table can have a different data type, allowing for diverse data storage within the table.
Q5
True / FalseIn SQL Server, a primary key column can contain NULL values.
A primary key column in SQL Server cannot contain NULL values as it uniquely identifies each row in the table.
Q6
True / FalseA table in SQL Server can be created without specifying any columns.
A table must have at least one column defined in SQL Server.
Q7
True / FalseSQL Server supports the use of computed columns.
Computed columns in SQL Server are columns that are derived from an expression involving other columns in the table.
Q8
True / FalseA column in SQL Server can store multiple values in a single cell.
A column in SQL Server is designed to store a single value per cell. Storing multiple values violates the principle of atomicity.
Q9
True / FalseIn SQL Server, a row represents a single record in a table.
Each row in a SQL Server table represents a single record containing data for each column defined in the table.
Q10
True / FalseSQL Server allows setting default values for columns.
Default values for columns in SQL Server can be specified to ensure that a value is provided when no value is explicitly given.
Q11
True / FalseSQL Server allows the creation of temporary tables that exist only during a session.
Temporary tables in SQL Server are created with a prefix (# for local and ## for global) and exist only during the session or connection in which they are created.
Q12
True / FalseSQL Server does not support the use of foreign keys in table columns.
SQL Server supports the use of foreign keys to enforce referential integrity between tables.
Q13
True / FalseSQL Server allows columns to be indexed to improve query performance.
Indexing columns in SQL Server can significantly improve query performance by providing fast access paths to the data.
Q14
True / FalseSQL Server columns can have constraints such as CHECK and DEFAULT.
Constraints like CHECK and DEFAULT in SQL Server ensure that data meets specified rules and default values are applied when no data is provided.
Q15
True / FalseA column with a UNIQUE constraint can contain duplicate values.
A column with a UNIQUE constraint in SQL Server cannot contain duplicate values; each value must be unique.