집 >데이터 베이스 >MySQL 튜토리얼 >다른 정보와 함께 특정 MySQL 데이터베이스에 저장된 함수 목록을 어떻게 볼 수 있습니까?
다음 쿼리를 사용하면 특정 MySQL 데이터베이스에 저장된 함수 및 기타 정보 목록을 볼 수 있습니다 -
mysql> SHOW FUNCTION STATUS WHERE db = 'query'\G *************************** 1. row *************************** Db: query Name: factorial Type: FUNCTION Definer: root@localhost Modified: 2021-11-16 14:04:48 Created: 2021-11-16 14:04:48 Security_type: DEFINER Comment: character_set_client: cp850 collation_connection: cp850_general_ci Database Collation: latin1_swedish_ci *************************** 2. row *************************** Db: query Name: Hello Type: FUNCTION Definer: root@localhost Modified: 2017-11-12 11:42:31 Created: 2017-11-12 11:42:31 Security_type: DEFINER Comment: character_set_client: cp850 collation_connection: cp850_general_ci Database Collation: latin1_swedish_ci 2 rows in set (0.16 sec)
위 내용은 다른 정보와 함께 특정 MySQL 데이터베이스에 저장된 함수 목록을 어떻게 볼 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!