⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sms.sql

📁 usb-com for sms 自己开发的类 可以借鉴下
💻 SQL
字号:
/*==============================================================*/
/* Database name:  sms                                          */
/* DBMS name:      Microsoft SQL Server 2000                    */
/* Created on:     2004-11-8 17:15:26                           */
/*==============================================================*/


if exists (select 1
            from  sysobjects
           where  id = object_id('SMS')
            and   type = 'U')
   drop table SMS
go


if exists (select 1
            from  sysobjects
           where  id = object_id('SMSRecv')
            and   type = 'U')
   drop table SMSRecv
go


/*==============================================================*/
/* Table: SMS                                                   */
/*==============================================================*/
create table SMS (
   SysNo                int                  identity,
   CellNumber           nvarchar(11)         not null,
   SMSContent           nvarchar(70)         not null,
   Priority             int                  not null default 0,
   RetryCount           int                  not null default 0,
   CreateTime           datetime             not null default getdate(),
   HandleTime           datetime             null,
   Status               int                  not null default 0,
   constraint PK_SMS primary key  (SysNo)
)
go


/*==============================================================*/
/* Table: SMSRecv                                               */
/*==============================================================*/
create table SMSRecv (
   SysNo                int                  identity,
   CellNumber           nvarchar(11)         not null,
   SMSContent           nvarchar(70)         not null,
   SendTime             datetime             not null,
   HandleTime           datetime             not null default getdate(),
   constraint PK_SMSRECV primary key  (SysNo)
)
go


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -