Sign in
third-party-mirror
/
glassfish
/
61c5787ff9380215ac7d310ce36855cdaac0cb2a
/
.
/
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'
);