您可以使用SQL语句进行Hologres开发,示例语句如下。
BEGIN;
CREATE TABLE holo_bank_data (
age int8,
job text,
marital text,
education text,
card text,
housing text,
loan text,
contact text,
month text,
day_of_week text,
duration text,
campaign int8,
pdays float8,
previous float8,
poutcome text,
emp_var_rate float8,
cons_price_idx float8,
cons_conf_idx float8,
euribor3m float8,
nr_employed float8,
y int8
);
COMMIT;
insert into holo_bank_data values
(53, 'technician', 'married', 'unknown', 'no', 'no', 'no', 'cellular', 'nov', 'fri', 138, 1, 999, 0, 'nonexistent', 1.22, 93.20, 42.00, 4.02, 5195.80, 0),
(28, 'management', 'single', 'university.degree', 'no', 'yes', 'no', 'cellular', 'jun', 'thu', 339, 3, 6, 2, 'success', 1.69, 94.05, 39.79, 0.72, 4991.60, 1),
(39, 'services', 'married', 'high.school', 'no', 'no', 'no', 'cellular', 'apr', 'fri', 185, 2, 999, 0, 'nonexistent', 1.80, 93.07, 47.10, 1.40, 5099.10, 0);
select * from holo_bank_data;
