You can use meta data held in SQLite with query:
select
sm.name as table_name,
pti.name as column_name
from
sqlite_master sm
join
pragma_table_info(sm.name) as pti
where
pti.name like '%category%';
It returns (as can be seen) tables with column names. Then, you can filter output by column name, I used for example condition:
where pti.name like '%category%'
which returns only those column names including category
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…