"SHOW DATABASES"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
7번째 줄: 7번째 줄:
[[분류: MongoDB]]
[[분류: MongoDB]]
{{참고|MongoDB show dbs}}
{{참고|MongoDB show dbs}}
<source lang='console'>
<syntaxhighlight lang='console'>
> show dbs
> show dbs
local 0.078125GB
local 0.078125GB
</source>
</syntaxhighlight>


==MySQL==
==MySQL==
[[분류: MySQL]]
[[분류: MySQL]]
{{참고|MySQL SHOW DATABASES}}
{{참고|MySQL SHOW DATABASES}}
<source lang='console'>
<syntaxhighlight lang='console'>
mysql> SHOW DATABASES;
mysql> SHOW DATABASES;
+--------------------+
+--------------------+
28번째 줄: 28번째 줄:
+--------------------+
+--------------------+
6 rows in set (0.01 sec)
6 rows in set (0.01 sec)
</source>
</syntaxhighlight>


==PostgreSQL==
==PostgreSQL==
{{참고|PostgreSQL 데이터베이스 목록 조회}}
{{참고|PostgreSQL 데이터베이스 목록 조회}}
<source lang='console'>
<syntaxhighlight lang='console'>
template1=# \l
template1=# \l
                                   List of databases
                                   List of databases
43번째 줄: 43번째 줄:
           |          |          |            |            | postgres=CTc/postgres
           |          |          |            |            | postgres=CTc/postgres
(3 rows)
(3 rows)
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2021년 9월 24일 (금) 23:28 기준 최신판

SHOW DATABASES
show dbs

1 MongoDB[ | ]

> show dbs
local	0.078125GB

2 MySQL[ | ]

mysql> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| Northwind          |
| gnuboard           |
| mysql              |
| performance_schema |
| test               |
+--------------------+
6 rows in set (0.01 sec)

3 PostgreSQL[ | ]

template1=# \l
                                  List of databases
   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   
-----------+----------+----------+-------------+-------------+-----------------------
 postgres  | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 
 template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
 template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
(3 rows)

4 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}