Chapter 3 DBMS Reference Guide


Delimiter

Field separation character. For example: col1, col2, col3.

Example

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.