Closed coryschwartz closed 4 years ago
It is unusual to have relations with dots in the name.
> select * from chain.block; ERROR: relation "chain.block" does not exist LINE 1: select * from chain.block; ^
Of course this works if you quote, but this is a minor annoyance. You have to make the selection like this.
> select * from "chain.block"; ...
Dots are typically used to delineate components of the database, such as table_name.column_name so it just looks strange.
table_name.column_name
It is unusual to have relations with dots in the name.
Of course this works if you quote, but this is a minor annoyance. You have to make the selection like this.
Dots are typically used to delineate components of the database, such as
table_name.column_name
so it just looks strange.