codecamp

根据字段名,找到该字段是表的第几列

1.语法:

select ORDINAL_POSITION 列位置 
from information_schema.columns
where table_name='表名' and COLUMN_NAME='字段名'

2.参数: ORDINAL_POSITION:字段顺序,冲1开始 information_schema.columns:表的字段信息 table_name:表名 COLUMN_NAME:字段名 3.例如: 3.1表:t_bridge

SELECT
    ORDINAL_POSITION 列位置
FROM
    information_schema. COLUMNS
WHERE
    TABLE_NAME = 't_bridge'
AND COLUMN_NAME = 'cityname';

3.2结果 列位置:3

sql查询,给查询结果添加上序号
查询表格字段,字段类型,并过滤处理
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Oracle数据库.

MySQL数据库

Access数据库

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }