SELECT
	table_name,table_type,table_schema
FROM
	information_schema.TABLES 
WHERE
	table_schema = 'security_domain' 
	AND table_type = 'BASE TABLE';

  NOTE:

      This sql only query tables under database security_domain

相关文章:

  • 2021-12-02
  • 2022-12-23
  • 2022-12-23
  • 2021-07-17
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案