I'm trying to refer to my table via a fully qualified name in Toad for Oracle. The database name is dbName.world, schema is schema1, and table name is table1. However, the following select statement fails with the error "ORA-00903: invalid table name".
select * from [dbName.world].schema1.table1
There's a red underline below [ and the . between dbName and world. This is my first time using Toad but I do have SQL experience from MySQL, SQL Server, and SQL Developer.
How do I reference a table via a fully qualified name?