本文共 671 字,大约阅读时间需要 2 分钟。
下面写了几条根据数据库表,获取domain中要用的数据字段sql语句。
selectconcat(concat(column_name,concat('=',concat(concat('#{',column_name),'}'))),',')from information_schema.`COLUMNS` where table_schema='saas-export' and table_name='ss_company';
selectconcat(column_name,concat('=',concat(concat('#{',concat(column_name,'}')),',')))from information_schema.`COLUMNS` where table_schema='saas-export' and table_name='ss_company'
select column_name,data_type,column_comment from information_schema.COLUMNS
where table_schema='saas-export' and table_name='ss_company'
转载于:https://blog.51cto.com/13859849/2399766