Was this helpful?
Table Definitions for Examples
The table definitions that follow are required for the following examples:
drop table accounts;
create table accounts (
account_id integer4,
balance float8);
insert into accounts (account_id, balance) values ( 14567, 0);
Last modified date: 08/22/2022