当我运行以下SQL列出base.mytable
的列:
select column_name, ordinal_position, is_nullable, data_type
from information_schema.columns
where table_catalog = 'mycatalog'
and table_schema = 'base'
and table_name = 'mytable'
order by ordinal_position;
我的ordinal_position
列值不按顺序排列:
1
2
3
4
5
9
24
25
26
27
28
29
31
32
33
34
36
37
38
39
40
41
42
43
44
45
46
47
48
49
我希望它们全部按顺序递增并增加1。
有人可以解释为什么会这样吗?
答案 0 :(得分:3)
该字段表示DOCS显示Ordinal position of the column within the table (count starts at 1)
这意味着它是创建顺序,但它没有说明您在该表上所做的更改。因此,每个更改drop column
都不会影响(重新排序)增量ordinal_name
这里只是创建声明
http://sqlfiddle.com/#!15/02bfb/1
现在使用alter table进行相同的创建。
答案 1 :(得分:1)
删除列就可以了。此外,表继承可能会导致订单发生时髦的事情。
答案 2 :(得分:0)
除了重新创建表或列的方法外,您可以使用以下方法更改SQL: row_number()over(按序号位置排序)