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

2024年11月28日 00:37
有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自带的工具就可以。