684
社区成员
发帖
与我相关
我的任务
分享
CREATE TABLE tbl_restaurant (
restaurantid INT IDENTITY( 1 , 1 ) PRIMARY KEY,--primary key of Restaurant
name NVARCHAR(200) UNIQUE NOT NULL,
resaddress NVARCHAR(500),
delivercondition NVARCHAR(200),
servicetime VARCHAR(15),-- restaruant service time
imagepath NVARCHAR(500),
resdescription NVARCHAR(2000),
label NVARCHAR(500),
isdeleted BIT,
deletedtime datetime,
phoneno VARCHAR(100) NOT NULL,
averagecost INT, --the average of you cost
isdelivery BIT, --does the restaurant delivery or not?
starcounts NUMERIC(2,1) DEFAULT 3.0 --customers' evaluate the restaurant
)
GO
添加修改存储过程?
-- ================================================
-- Template generated from Template Explorer using:
-- Create Procedure (New Menu).SQL
--
-- Use the Specify Values for Template Parameters
-- command (Ctrl-Shift-M) to fill in the parameter
-- values below.
--
-- This block of comments will not be included in
-- the definition of the procedure.
-- ================================================
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
CREATE PROCEDURE tbl_Restaurant_pro
-- Add the parameters for the stored procedure here
<@Param1, sysname, @p1> <Datatype_For_Param1, , int> = <Default_Value_For_Param1, , 0>,
<@Param2, sysname, @p2> <Datatype_For_Param2, , int> = <Default_Value_For_Param2, , 0>
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
SELECT <@Param1, sysname, @p1>, <@Param2, sysname, @p2>
END
GO