본문 바로가기
프로그래밍/DBMS

[MSSQL] DB에 속한 테이블명 알아내기

by zoo10 2011. 1. 3.

MSSQL에서 DB안에 속한 테이블명 알아내는 쿼리.

use pubs
select * from information_schema.tables

그러면 테이블의 스키마(필드구조)를 보고 싶다면?

select * from information_schema.columns 
where table_name='titleauthor'