set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[sp_employees_insert]
@id_emp nchar(10) ,
@name_emp varchar(20) ,
@lastname_emp varchar(20) ,
@tel_emp nchar(10) ,
@birthday_emp datetime
AS
BEGIN
SET NOCOUNT ON;
INSERT INTO tb_employees(id_emp,name_emp,lastname_emp,tel_emp,birthday_emp)
VALUES (@id_emp ,@name_emp,@lastname_emp,@tel_emp,@birthday_emp)
END