Create test_div table

This commit is contained in:
Paul Reeves 2023-01-25 15:58:16 +01:00
parent fa983530f0
commit b9dbf3ce7e
1 changed files with 7 additions and 0 deletions

View File

@ -6,7 +6,14 @@
create sequence test_div_seq; create sequence test_div_seq;
commit; commit;
create domain D_ID as BIGINT; create domain D_ID as BIGINT;
create domain D_DOUBLE as double precision;
create domain D_BIGINT as BIGINT;
create table test_div( create table test_div(
test_div_id d_id generated always as identity test_div_id d_id generated always as identity
, numerator D_BIGINT
, denominator D_BIGINT
, result D_DOUBLE
); );