如何在sybase数据库中创建数据表

2024年12月04日 04:03
有1个网友回答
网友(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)