7 lines
137 B
SQL
7 lines
137 B
SQL
create table Stats (
|
|
Id integer primary key not null,
|
|
Fahrenheit real not null,
|
|
Celsius real not null,
|
|
Humidity real not null
|
|
);
|