I am accidentally create a database with name "" through NET/Npgsql. Now I try to delete that database (contain 3 tables) through PgAdminIII by selecting entry, right click and choose delete/drop but I get error:

ERROR: Syntax error at or near ";"

How to get rid of that and delete "" database?

有帮助吗?

解决方案

Try this command:

DROP DATABASE """""";

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top