数据库快速生成实体类

-- 快速生成实体
#实体类
select  CONCAT('private ',DATA_TYPE,' ',column_name,'; //',column_comment) entity
#实体赋值
#select  CONCAT('info.set',column_name,' ; //',column_comment) `entity.set`
#ifnull
#select  CONCAT('ifnull(a.',column_name,',\'——\') ',column_name,',')

from information_schema.columns where table_name='表名' and  table_schema='库名'


你可能感兴趣的:(SQL语句)