如何从sybase数据库中读取建表语句

2024-11-28 00:37:19
推荐回答(2个)
回答1:

Sybase创建表基本语法示例
创建 titles 表:
create table titles
(title_id tid not null,
title varchar(80) not null,
type char(12) not null,
pub_id char(4) null,
price money null,
advance money null,
total_sales int null,
notes varchar(200) null,
pubdate datetime not null,
contract bit not null)

回答2:

ddlgen这个sybase自带的工具就可以。