Answer Posted / virgilio
A covering index is when you run a Query and you use an
indexed field in you where Clause:
*--Primary Key Creates aclustered Index
Create table Students
(
Studentid int Primary Key not Null, *
StudentName Nvarchar(20) Null,
StudentLastName Nvarchar(20) Null
)
Se;ect * from Students where StudentID = 20
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What happens if null values are involved in datetime operations?
What is difference between group by and having?
Can we delete data from a view?
Why use view instead of a table?
Explain hostprotectionattribute in sql server 2005?
Which sql server is best?
Difference between report and query parameter. Why do we need different type of parameter?
Explain what you mean by 3 tier architecture.
How do you clear a log file?
How many triggers are possible per table?
Explain sql delete command?
Explain how you can configure a running aggregate in SSRS?
What is database architecture? : SQL Server Architecture
When setting replication, is it possible to have a publisher as 64 bit sql server and distributor or subscribers as a 32 bit sql server?
How to find out the list schema name and table name for the database?