码迷,mamicode.com
首页 > 数据库 > 详细

sybase 脚本建表和删除表

时间:2017-04-15 14:39:52      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:integer   exists   tab   删除   varchar   建表   char   mem   sts   

脚本方式删除表

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

建表

create table users(
  id           integer      not null,
  cname        char(50)    null,
  url            char(50)    null,
  father_id         integer    null,
  row_select_flag   char(1)         default ‘0‘ null,
  seqid          char(3)         null,
  memos           varchar(120) null
)
go

sybase 脚本建表和删除表

标签:integer   exists   tab   删除   varchar   建表   char   mem   sts   

原文地址:http://www.cnblogs.com/yangxuming/p/6714184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!