You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CREATE TABLE types_test(names varchar(10), val real, id int)
|
|
|
|
LOAD DATA INFILE "data/datatypes.csv"
|
|
INTO TABLE types_test
|
|
FIELDS TERMINATED BY ","
|
|
|
|
select names, val * 10000 + id from types_test
|
|
|
|
create table date_time(id int, _date date, _time time, _timestamp timestamp);
|