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 are the dmvs?
What are the triggers in sql?
Does a sql server 2005 select statement require a from?
When would you prefer to have a minimum number of indexes?
What is difference between table aliases and column aliases? Do they affect performance?
What is BCP? When does it used in sql server 2012?
What is difference between order by and group by?
What is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure?
Do you know what are the restrictions applicable while creating views? : SQL Server Architecture
Create and insert into temp table in sql server?
What is b tree index?
What it means to be triggered?
Do you know what is difference between stored procedure and user defined function?
How many categories of data types used by sql server?
What are various ways to enhance the ssrs report?