Chapter 3 DBMS Reference Guide
Field separation character. For example: col1, col2, col3.
Delimiter = ,
Columns are separated by commas in the create table statement.
create table CUSTOMER
(
CUSNUM numeric(5) not null,
CUSNAME char(30) not null,
CUSADDR char(80) not null,
CUSACT char(80) ,
CUSTEL char(12) ,
CUSFAX char(12) ,
primary key (CUSNUM)
);
| Copyright (C) 2005. Sybase Inc. All rights reserved. |
| |