After creating a table I would like to insert data but I've encountered an error.
Creating the table:
CREATE TABLE "Buildings"(
"idBuilding" Integer NOT NULL,
"buildingName" Varchar2(30 ) NOT NULL,
"city" Varchar2(30 ) NOT NULL,
"street" Varchar2(30 ) NOT NULL,
)
and then
INSERT INTO Buildings VALUES(1, 'Empire State', 'New York', 'West');
and the error is
SQL Error: 00942. 00000 - "table or view does not exist"
I know that there are a lot of similar questions here but I couldn't find any solution. I've tried using GRANT and it didn't help. I'm using Oracle SQL Developer.