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