PostgressのSQL文
public.icon
from
2023/11/19
Postgress
の
SQL
文
PostgreSQL テーブル定義を表示する – KeruuWeb
テーブル定義を表示
$ \d テーブル名
Heroku Postgresでテーブル作成と基本的なデータ操作 | amateur engineer's blog
特定のテーブルの中身全部見る
$ select * from テーブル名;
https://www.postgresql.jp/document/8.3/html/dml-delete.html
テーブルのやつ全部消す
$ DELETE FROM テーブル名;