SQLite Forum

SELECT * Column Sequence / Order (not ORDER BY)
Login
Will there be a possibility for reordering columns? I.e. that one can use something like:

`ALTER TABLE Employees CHANGE empName empName VARCHAR(50) NOT NULL AFTER department;` or 

`ALTER TABLE UserOrder CHANGE order_id order_id INT(11) NOT NULL FIRST;`

Are there any plans for the next releases?