码迷,mamicode.com
首页 > 数据库 > 详细

获取数据库字段小技巧

时间:2019-05-24 18:42:24      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:for   mat   ble   arc   技巧   获得   名称   table   数据库   

下面写了几条根据数据库表,获取domain中要用的数据字段sql语句。

select
concat(
concat(column_name,
concat(‘=‘,
concat(concat(‘#{‘,column_name),‘}‘)
)
),‘,‘)

from information_schema.`COLUMNS` where table_schema=‘saas-export‘ and table_name=‘ss_company‘;

以上sql语句获得的结果如id=#{id},

select
concat(column_name,concat(‘=‘,concat(concat(‘#{‘,concat(column_name,‘}‘)),‘,‘)))
from information_schema.`COLUMNS` where table_schema=‘saas-export‘ and table_name=‘ss_company‘

以上sql语句获得的结果如id=#{id},

select column_name,data_type,column_comment from information_schema.COLUMNS where table_schema=‘saas-export‘ and table_name=‘ss_company‘
以上sql语句获得的结果如
id varchar ID
name varchar 公司名称


获取数据库字段小技巧

标签:for   mat   ble   arc   技巧   获得   名称   table   数据库   

原文地址:https://blog.51cto.com/13859849/2399766

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!