[Database] 데이터베이스에서 특정 컬럼 찾기

Yeon Jeffrey Seo·2022년 7월 20일
0

데이터베이스

목록 보기
5/6
SELECT
	*
FROM
	information_schema.columns
WHERE
	table_schema = '{database_name}' AND column_name = '{column_name}';
profile
The best time to plant a tree was twenty years ago. The second best time is now.

0개의 댓글