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 is 2nf normalization?
What is a deadlock and what is a live lock?
What is scan table/view and seek table/view when its occurs? : sql server database administration
what is the difference between a primary key and a unique key? : Sql server database administration
What is sql server replication? : sql server replication
What is the difference between the export /import functions in sql studio and standalone sql manager? : sql server management studio
Write the SQL query to drop, truncate and delete table.
What are the instances when triggers are appropriate?
How to add an address record into adventureworkslt?
What part does database design plays a role in performance of an sql server-based application?
How to check if a table is being used in sql server?
What are statistics?
What is difference between views and stored procedures?
What are the dis_advantages of stored procedures, triggers, indexes?
If the job running very slow what is the action you do