6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

postgreSQLコマンドとMySQLコマンドの比較

Last updated at Posted at 2016-10-23

データベース選択

postgres
psql databasename
mysql
mysql -uroot -p databasename

データベース一覧

postgres
\l
mysql
show databases;

データベース選択

postgres
\c databasename
mysql
use databasename;

テーブル名一覧

postgres
\dt
mysql
show tables;

テーブル詳細

postgres
\d tablename
mysql
desc tablename
6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?