有时我的命令psql
似乎没有效果。知道为什么吗?
以下是数据库中所有表的列表library_development
:
library_development=> \d
List of relations
Schema | Name | Type | Owner
--------+-------------------+-------+----------
public | Pavan | table | postgres
public | schema_migrations | table | sai
(2 rows)
Pavan
在此之后,我使用以下方法删除了表:
library_development-> drop table Pavan
但是表格并没有被删除,它的显示如下所示:
library_development=> \d
List of relations
Schema | Name | Type | Owner
--------+-------------------+-------+----------
public | Pavan | table | postgres
public | schema_migrations | table | sai
(2 rows)
还:
我在 Windows 中使用 PostgreSQL。是否有任何命令可以清除控制台(如 Oracle 中的 cl scr )?
使用 DML 脚本时,我需要在 Postgresql 中执行“提交”的任何概念吗?