如何查询MYSQL的列范围

时间:2012-10-31 23:59:17

标签: mysql

我在MYSQL中有一个表,我想在之后的前5列和每一列之后开始查询。

有没有像我这样的方式

 select * from table where column 5 begins  

另外我知道在第5列标题是数字。所以它也可能像

Select * from table where headers=[0-9]

1 个答案:

答案 0 :(得分:0)

你只能做

SELECT column5, column6, column7 FROM table  -- up to the column you want to stop