Show column information (컬럼 정보 조회)
show COLUMNS FROM my_table
Show only column name(filed) (컬럼 이름만 조회)
select COLUMN_NAME from information_schema.COLUMNS where TABLE_NAME='my_table';
ing...
show COLUMNS FROM my_table
select COLUMN_NAME from information_schema.COLUMNS where TABLE_NAME='my_table';
1 댓글
Python If Statement
답글삭제Python If Else Statement
Python Elif
Python Nested If
Python While Loop
Python For Loop
Python Nested Loop
Python Break Statement
Python Continue Statement