What are indexes in sql?
Answer / guest
Indexes improve database performance by allowing faster retrieval of records.
Types of indexes:
• Clustered Index – Reorders table records for faster access.
• Non-Clustered Index – Stores index separately for faster lookups.
• Unique Index – Ensures all values in a column are unique.
Is This Answer Correct ? | 0 Yes | 0 No |
What is #table in sql server?
Security Question- SQL DBA exparts, need your help...
How to create user messages with print statements in ms sql server?
What is bcp? When does it used?
create procedure proc1 (@a int) as begin if @a=1 create table #temp(a1 int) else create table #temp(a1 int) end while executeing the above code it shows error like '#temp already exist' .why it shows an error?
Can primary key be a foreign key?
Explain concepts of analysis services?
Do you know query execution plan?
I have a table EMP in which the values will be like this EmpId Ename Sal DeptId 11 Ram 10000 10 11 Ram 10000 10 22 Raj 20000 20 22 Raj 20000 20 33 Anil 15000 30 33 Anil 15000 30 I want to delete only duplicate Rows. After Delete I want the output like this EmpId Ename Sal DeptId 11 Ram 10000 10 22 Raj 20000 20 33 Anil 15000 30
How to add a new column to an existing table with "alter table ... Add" in ms sql server?
What is deadlock and how to avoid the deadlocks.
What is sorting and what is the difference between sorting and clustered indexes?