Is SET a SQL Keyword?

Answers were Sorted based on User's Feedback



Is SET a SQL Keyword?..

Answer / rainy

yes::
it is used to update particular info.

Is This Answer Correct ?    44 Yes 1 No

Is SET a SQL Keyword?..

Answer / radhakrishnan vaithilingam

Yes.
The SET is keyword in SQL Server. The SET is ANSI standard.

Is This Answer Correct ?    13 Yes 4 No

Is SET a SQL Keyword?..

Answer / digvijay

yes, set is assign the value in declared variable.

exaple:--

declare @a int
set @a=20
@a hold the 20.

Is This Answer Correct ?    7 Yes 3 No

Is SET a SQL Keyword?..

Answer / ganesh dhage

SET is Reserved word in the SQL Server.Basically SET keyword is used for updating the particular record in the database table with some conditions...If i need to change the name of Student from Student table then i can write query like this->
update Student set Stud_Name=Ganesh
where StudID=201 and Email='abcd@pune.com';

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL Server Interview Questions

what changed between the previous version of sql server and the current version? : Sql server database administration

0 Answers  


What is the cartesian product of the table?

0 Answers  


What is difference between index seek vs. Index scan?

0 Answers  


What happens if we shrink log file in sql server?

0 Answers  


What do you understand by triggers?

0 Answers  






How do I install sql server?

0 Answers  


How to delete an attribute from the emp table

4 Answers  


What is the difference between a view and a stored procedure?

0 Answers  


How do you create a clustered index?

0 Answers  


What are the disadvantages of merge replication?

0 Answers  


How you can change a cross join into an inner join?

0 Answers  


What is Stored Procedure? What is Views in sql server? Difference between a User Defined Function and a Stored Procedure Difference between a primary key and a unique key? What is a join and explain different types of joins. Difference between temp table and table variable Difference between Triggers and Stored Procedures Difference between UNION ALL Statement and UNION What is COALESCE / Why do we use COALESCE? Why we use SET ROWCOUNT in Sql How many clustered index can have a table How many types of local tables in SQL SERVER Difference between DELETE and TRUNCATE What is Aggregate Functions? What is Row_Number()? What are Ranking Functions? What is NOLOCK? What is CTE? What are the Advantages of using CTE? What is the STUFF function and how does it differ from the REPLACE function? What are the difference between clustered and a non-clustered index? What are the different index configurations a table can have? Difference between a HAVING CLAUSE and a WHERE CLAUSE? Difference between SET and SELECT Provide all the built in string function of SQL SERVER Difference between char and varchar data types Define candidate key, alternate key, composite key. What are constraints? Explain different types of constraints. What is a self join? Explain it with an example. How will you convert table row to a column comma separated value

4 Answers   ACS,


Categories