로딩
요청 처리 중입니다...

MSSQL 테이블 컬럼 정보 보기

 MSSQL 테이블 컬럼 정보 보기

테이블 목록보기sp_tablesselect * from information_schema.tables 컬럼 상세내용보기sp_columns 테이블명select * from information_schema.columns where table_name = '테이블명'select column_name, data_type, character_maximum_length, column_default from information_schema.columns where table_name = '테이블명'...

MSSQL 테이블 컬럼 정보 보기에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.