PHP MySQL 資料字典生成器

2021-07-31 05:30:34 字數 456 閱讀 1568

二開乙個專案,居然啥手冊都沒有。至少先給個資料字典啊。怒,自己生成乙個。

其實就是那麼幾條sql

-- 顯示所有表

show tables;

-- 顯示表資訊

desc table_name;

--顯示字段資訊

show

full columns from table_name;

--顯示更詳細的表資訊

select * from information_schema.`tables`

where table_schema ='db_name'

模板套用了dz的風格,稍加改動而成。

開啟php,修改裡面的配置資訊即可。

python生成器應用之字典生成

python 生成器,這裡是指包含 yield關鍵字的函式,區別於類似表示式的那種情況,例如 generator x 5 6 for x in range 20 本文主要 生成器函式 如下 在字典生成的應用。def counts n i 0while i n yield i i 1生成字典的函式,需...

資料字典生成sql

select 表名 case when a.colorder 1 then d.name else end,表說明 case when a.colorder 1 then isnull f.value,else end,字段序號 a.colorder,欄位名 a.name,標識 case when ...

php資料字典生成

created by phpstorm.user administrator date 2018 8 30 030 time 18 53 use think controller class dbdict extends controller or die mysql connect is erro...