由于customerAddress
.
这是我的代码:
CREATE PROCEDURE insertNewCustomer
-- Add the parameters for the stored procedure here
@customerId char(8),
@customerName varChar(20),
@customerAddress varChar(18),
@zipCode integer
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
INSERT INTO customer (customerId, customerName, customerAddress, zipCode)
VALUES ('Z0999999', 'Larisa Preiser', '3801 W. Temple Avenue', '92335')
END
GO
EXEC insertNewCustomer 1, '', '', 0
关于如何使它截断它的任何想法?