Bineesh  Viswanath

Bineesh Viswanath

  • NA
  • 1k
  • 761k

SQL Server Insert into Command

May 30 2013 1:27 AM
Sir, I did a SQL Server Insert Command,  but i can't execute. Here the command. what the Problem this command has?

Please correct the fault and send me.

CREATE PROCEDURE ClassAdd
@classId int,
@ClassName nvarchar(50),
@Dates datetime
AS

insert into tbl_Class
values(classId=@classId,className=@className,Dates=@Dates)
    
     
 

Answers (5)