Is SET a SQL Keyword?
Answers were Sorted based on User's Feedback
Answer / radhakrishnan vaithilingam
Yes.
The SET is keyword in SQL Server. The SET is ANSI standard.
| Is This Answer Correct ? | 13 Yes | 4 No |
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 |
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 |
Mention the different types of replication in sql server.
hi to all teachers,... Friends who write in the query mode Full text Search in Sql Server have experience Who make(Convert) this Stored Procedure as a normal Full text Search, which contains and .. Is used, into Advance of the tips I have thanked all friends perfection. Email : rezaafandi@yahoo.com Create PROCEDURE Sp_student @fname varchar(50), @lname varchar(50), @tel varchar(50), @code varchar(50), @adr varchar(50), @search_operation varchar(50), @totalRowCount bigint output AS begin if @search_operation = 'and' begin SELECT f3,f4,f5,f6,f7 FROM tb_student WHERE( f5 like '%' + @fname + '%' and f4 like '%' + @lname + '%' and f6 like '%' + @tel + '%' and f7 like '%' + @code + '%' and f3 like '%' + @adr +'%' ) select @totalRowCount = @@rowcount end
What is Service Broker in sql server 2012?
What is a stored procedure?
What is the diffrence between update_one and auto_fix?
What are triggers in ms sql server?
How to tune a stored procedure?
How to select Distinct columns from the table, table having 20 columns and i want all coulmns
Which command executes the contents of a specified file?
Explain the flow of creating a cube? : sql server analysis services, ssas
What is meant by Active-Passive and Active-Active clustering setup?
What is data modeling and Reterminal integrity?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)