欢迎分享,转载请注明来源:内存溢出
适合。一直在与同事讨论关于将结构化数据(例如XML或JSON)存储在数据库列而不是创建子表是否是一个好主意.例如,假设我们需要存储有关问题的信息.两种类型的问题是“多项选择”和“评分”MySQL 查看表结构简单命令。 一、简单描述表结构,字段类型desc tabl_name显示表结构,字段类型,主键,是否为空等属性,但不显示外键。二、查询表中列的注释信息select * from information_schema.columns where table_schema = 'db' #表所在数据库and table_name = 'tablename' #你要查的表三、只查询列名和注释select column_name, column_comment from information_schema.columns where table_schema ='db' and table_name = 'tablename' 四、#查看表的注释select table_name,table_comment from information_schema.tables where table_schema = 'db' and table_name ='tablename'ps:二~四是在元数据表中查看,我在实际 *** 作中,常常不灵光,不知为什么,有了解的大侠请留印。五、查看表生成的DDL show create table table_name
赞
(0)
打赏
微信扫一扫
支付宝扫一扫
php连接mysql数据库原理是怎样的
上一篇
2023-03-07
spring中配置MySql数据源,怎样配置数据库信息
下一篇
2023-03-07
评论列表(0条)