I made a table in SQLiteStudio in DDL:
CREATE TABLE "City "
(
Name STRING,
Population INTEGER,
Country STRING,
Elevation INTEGER
);
However, when I start doing queries such as this:
Select AVG(Elevation)
From 'City'
Where Country='Germany';
This error will show up:
Error while executing SQL query on database'': no such table:
Is this because I wrote the syntax wrong or a setting in SQLiteStudio?