how to make a table
currently i have a set of raw data, it's abit like below:
# ID/Type/Ori/DepDes/ArrDes/DepTime/ArrTime/Mileage/Speed
2 177 10 1 1 2 37 2104 41.1
3 10481 12 7 7 2 38 2026 38.4
6 8304 11 1 1 7 39 2126 45.3
1 2097 10 3 3 2 40 1948 34.5
4 8305 11 1 1 3 40 2126 39
7 2097 12 1 1 7 44 2048 37.5
5 8304 9 3 3 6 45 2126 37.8
10 8304 11 1 1 10 49 2126 37.9
8 48 9 7 7 8 50 1948 31.2
if i want to store this all data into a table, how do i do it? if i just use java to write the table(without using sql), is that possible to do it?

