Advertisement
Guest User

Untitled

a guest
May 24th, 2019
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.74 KB | None | 0 0
  1. ALTER PROC [dbo].[spSaveOrder] (@Customer_FirstName AS NVARCHAR(50),
  2.                                 @Customer_SurName AS NVARCHAR(50),
  3.                                 @Country AS NVARCHAR(70),
  4.                                 @Customer_Phone AS INT,
  5.                                 @Customer_Mail AS NVARCHAR(70),
  6.                                 @ZIP AS INT,
  7.                                 @Order_Date AS DATETIME2,
  8.                                 @SampleType1 AS NVARCHAR(10) = NULL,
  9.                                 @SampleType2 AS NVARCHAR(10) = NULL,
  10.                                 @SampleType3 AS NVARCHAR(10) = NULL,
  11.                                 @SampleType4 AS NVARCHAR(10) = NULL,
  12.                                 @SampleType5 AS NVARCHAR(10) = NULL,    
  13.                                 @SampleType6 AS NVARCHAR(10) = NULL,
  14.                                 @SampleType7 AS NVARCHAR(10) = NULL,
  15.                                 @SampleType8 AS NVARCHAR(10) = NULL,
  16.                                 @SampleType9 AS NVARCHAR(10) = NULL,
  17.                                 @SampleType10 AS NVARCHAR(10) = NULL)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement