Sign in
third-party-mirror
/
glassfish
/
e76c3f38cfd16c123f36a816a061508440f4971d
/
.
/
appserver
/
tests
/
appserv-tests
/
devtests
/
jdbc
/
custom-validation-1
/
sql
/
create_pointbase.sql
blob: 32dca8a86c8147c195a27abf9a3997f69fe46b2d [
file
] [
log
] [
blame
]
Drop
table
O_CUSTOMER
;
CREATE
TABLE
O_CUSTOMER
(
c_id integer
not
null
,
c_phone char
(
16
)
);
Drop
table
DUMMY
;
CREATE
TABLE
DUMMY
(
c_id integer
not
null
,
c_phone char
(
16
)
);
INSERT
INTO
DUMMY
VALUES
(
1
,
'wxyz'
);