博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mysql 获取表的所有字段
阅读量:5254 次
发布时间:2019-06-14

本文共 400 字,大约阅读时间需要 1 分钟。

select COLUMN_NAME from information_schema.COLUMNS where table_name = 'your_table_name';select COLUMN_NAME from information_schema.COLUMNS where table_name = 'your_table_name' and table_schema = 'your_db_name'; 取出所有字段,用一行显示(中间用英文逗号隔开)
select group_concat(COLUMN_NAME SEPARATOR ',')  from information_schema.COLUMNS where table_name = 'tableName';

转载于:https://www.cnblogs.com/learncode/p/11279203.html

你可能感兴趣的文章
Google最新截屏案例详解
查看>>
文件对比与差异提取的实现
查看>>
修长城 (区间DP)
查看>>
android intent 传递list或者对象
查看>>
javascript面向对象精要第二章函数整理精要
查看>>
iOS开发——Xcode快捷键
查看>>
linux虚拟机CentOS 7完整安装流程截图
查看>>
AndroidManifest.xml文件详解(uses-feature)
查看>>
bzoj 1087 互不侵犯King
查看>>
(随笔)关于人生的一点新感悟
查看>>
JavaScript 随意记
查看>>
CodeForces 1103E. Radix sum
查看>>
Virtual PC2007 + Redhat9下的网络配置
查看>>
字体的术语
查看>>
每天一个linux命令(20):find命令之exec
查看>>
nagios 抓取数据插件ndoutils 学习
查看>>
date日期 格式化
查看>>
对 RUP(Rational Unified Process)的简单认识
查看>>
Leetcode解题笔记-Merge sorted Array
查看>>
POJ - 3281 Dining (最大流dinic)
查看>>