Sign in
third-party-mirror
/
glassfish
/
d9909056f3949f5e2b56f0931f2b6ae16c5d4ac7
/
.
/
appserver
/
tests
/
appserv-tests
/
devtests
/
jdbc
/
txafternontxjndi
/
sql
/
create_pointbase.sql
blob: c3b0d5c64b35599c59645b6b281bbfc53d4a8579 [
file
] [
log
] [
blame
]
Drop
table
O_Customer
;
CREATE
TABLE
O_Customer
(
c_id integer
not
null
,
c_phone char
(
16
)
);
INSERT
INTO
O_CUSTOMER
VALUES
(
0
,
'abcd'
);
INSERT
INTO
O_CUSTOMER
VALUES
(
1
,
'pqrs'
);