uCosminexus Application Server, Application Development Guide
This subsection describes how to create a table using the GUI version of HiRDB SQL Executer. Note that before you create a table, connect to the GUI version of HiRDB SQL Executer as per the procedure described in 3.3.1 Connecting to an embedded database.
CREATE SCHEMA; |
create table checking
(id varchar(3) primary key,
balance double precision);
insert into checking
values ('001', 10000.00);
create table saving
(id varchar(3) primary key,
balance double precision);
insert into saving
values ('001', 500.00);
|
All Rights Reserved. Copyright (C) 2012, 2013, Hitachi, Ltd.