1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| drop table if exists tb_cours;
create table tb_cours (
id integer primary key
, date_time text
, CROSS text
, val03 integer
, open float
, low float
, high float
, close float
);
begin ;
insert into tb_cours values (2 ,"10/08/2010 09:00", "EURUSD", 30, 1.3177, 1.3177, 1.3177, 1.3177);
insert into tb_cours values (30 ,"10/08/2010 10:00", "EURUSD", 21, 1.3159, 1.3158, 1.318, 1.3168);
insert into tb_cours values (58 ,"10/08/2010 11:00", "EURUSD", 30, 1.3155, 1.3146, 1.3168, 1.3158);
insert into tb_cours values (86 ,"10/08/2010 12:00", "EURUSD", 30, 1.3145, 1.3144, 1.3163, 1.3154);
end; |
Partager