「SQL雜記」修訂間的差異

跳至導覽 跳至搜尋
增加 8 位元組 、 2023年12月5日 (二) 00:34
無編輯摘要
行 2: 行 2:
==SQL Pocket Guide的一些記錄==
==SQL Pocket Guide的一些記錄==
====Ch4. 增刪更檔案====
====Ch4. 增刪更檔案====
下列為PostgreSQL為準
*下列語法以PostgreSQL為準
database object 是存資料的資料庫物件
*database object 是存資料的資料庫物件


datamodel是綱要,schema是其實作
*datamodel是綱要,schema是其實作


檢視現有資料庫
*檢視現有資料庫
<pre>
<pre> \l</pre>
\l
</pre>
檢視目前使用之資料庫:
<pre>
select current_database;
</pre>
刪除資料庫


*檢視目前使用之資料庫:
<pre> select current_database;</pre>
*刪除資料庫
<pre>drop database my_db;</pre>
<pre>drop database my_db;</pre>


導覽選單