jaydebeapi/test/data/create_simple_decimal.sql

6 lines
113 B
SQL

create table customer (
"CUST_ID" INTEGER not null,
"USER_ID" DECIMAL(18,0) not null,
primary key ("CUST_ID")
);