sybase 脚本建表和删除表

Posted 西瓜的夏天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sybase 脚本建表和删除表相关的知识,希望对你有一定的参考价值。

脚本方式删除表

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 脚本建表和删除表的主要内容,如果未能解决你的问题,请参考以下文章

对MySQL库表和记录的基本操作

在 Sqlite 中创建表之前是不是必须删除表?

SqlServer 循环建表删除表更新表

hive删除表和数据,以及删除库

顺序表应用2:多余元素删除之建表算法

顺序表应用2:多余元素删除之建表算法