Backend/Database

mysql object 확인

findmypiece 2021. 3. 19. 17:44
728x90

프로시저 확인

show procedure status;

 

함수 확인

show function status;

 

테이블 확인

show tables;

 

프로시저, 함수 확인 (information_schema 활용)

select * from information_schema.ROUTINES

728x90