【正文】
=================================*/if exists (select 1 from sysobjects where id = object_id(39。) and type = 39。) drop table 收貨人goif exists (select 1 from sysobjects where id = object_id(39。) and type = 39。) drop table 用戶goif exists (select 1 from sysobjects where id = object_id(39。) and type = 39。) drop table 用途goif exists (select 1 from sysobjects where id = object_id(39。) and type = 39。) drop table 訂單goif exists (select 1 from sysobjects where id = object_id(39。) and type = 39。) drop table 訂單明細(xì)goif exists (select 1 from sysobjects where id = object_id(39。) and type = 39。) drop table 購物車goif exists (select 1 from sysobjects where id = object_id(39。) and type = 39。) drop table 鮮花go/*==============================================================*//* Table: 收貨人 *//*==============================================================*/create table 收貨人 ( REid int not null, Uid int null, addr char(60) null, REname char(20) null, REiphone numeric(11) null, constraint PK_收貨人 primary key nonclustered (REid))go/*==============================================================*//* Table: 用戶 *//*==============================================================*/create table 用戶 ( Uid int not null, SHid int null, phone numeric(11) null, pwd char(20) null, char(20) null, Uname char(20) null, constraint PK_用戶 primary key nonclustered (Uid))go/*==============================================================*//* Table: 用途 *//*==============================================================*/create table 用途 ( PU