Hen*_*ine 2

还没有,但您可以查询 DBMS 的数据字典来开始。

例如,在 MySQL 上,您可以从以下内容开始:

select concat('(defentity ', t.table_name ,')') as defentity
  from information_schema.tables t
  where table_schema = 'mySchema';
Run Code Online (Sandbox Code Playgroud)