"SQL DESCRIBE"의 두 판 사이의 차이

(DESC 문서로 넘겨주기)
 
잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
(사용자 2명의 중간 판 9개는 보이지 않습니다)
1번째 줄: 1번째 줄:
#넘겨주기 [[DESC]]
[[분류: SQL]]
 
==MySQL==
[[분류: MySQL]]
{{참고|MySQL DESCRIBE}}
<syntaxhighlight lang='MySQL'>
DESCRIBE 테이블명
</syntaxhighlight>
<syntaxhighlight lang='MySQL'>
DESC 테이블명
</syntaxhighlight>
 
==PostgreSQL==
[[분류: PostgreSQL]]
{{참고|PostgreSQL \d+}}
<syntaxhighlight lang='PostgreSQL'>
\d+ 테이블명
</syntaxhighlight>
 
==SQLite==
[[분류: SQLite]]
{{참고|SQLite pragma table_info()}}
<syntaxhighlight lang='sqlite3'>
SQLite pragma table_info(employees)
</syntaxhighlight>
 
==같이 보기==
*[[SQL SHOW CREATE TABLE]]

2021년 7월 24일 (토) 19:00 기준 최신판


1 MySQL[ | ]

DESCRIBE 테이블명
DESC 테이블명

2 PostgreSQL[ | ]

\d+ 테이블명

3 SQLite[ | ]

SQLite pragma table_info(employees)

4 같이 보기[ | ]

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