Developing Portable Applications : 4. Gateway Database Procedures : How to Create Stored Database Procedures from Ingres Clients : Table Definitions for Examples
 
Share this page                  
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);