how to give input dynamically to a insert statement in
sqlserver
Answer Posted / ashutosh rai
Declare @id int,@name varchar(100),@class varchar(100)
set @id=1
set @name='Ashutosh'
set @class='MCA'
insert into student_table(id,name,class)
values(@id,@name,@class)
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What are the types of database schema? : sql server analysis services, ssas
What is data source object?
what is the difference between them (ethernet networks and token ring networks)? : Sql server database administration
How to list all tables in the database using odbc_tables()?
Define tool Manage Statistics in SQL Server 2000 query ?
How do I start and stop sql server?
Explain system views?
How do you drop an index?
How to stop log file growing too big?
How do I manually uninstall an instance of sql server 2016?
How to connect a database with sql express.?
What are triggers? How many triggers you can have on a table? How to invoke a trigger on demand?
what are the different types of replication you can set up in sql server? : Sql server database administration
What is compound operators?
What is the difference between a function and a trigger?