How can I move the columns’ location? For example, move the ID column to the end?
You have created the table in Firebird? Then you could change the sorting by
ALTER TABLE "Table1" ALTER "ID" POSITION 9;
but sometimes the position has been changed but the GUI for the table won’t show it.
With internal HSQLDB you could only set the position while inserting a new field, not after a field has been inserted.
And as @Villeroy commented earlier: You could position the fields in queries, forms and views. So if you need a special position create a query and input values directly in a query.
1 Like
2 Likes