5
Answers

SQL Server Insert into Command

Ask a question
Bineesh  VP

Bineesh VP

11y
957
1
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)