22.06.2012, 05:24
I was wondering how to add a new column at the END of the SQLite database because when i add a column it is on the beginning of the base.
Thank you.
Thank you.
ALTER TABLE `table_name` ADD `column_name`;
ALTER TABLE `table_name` ADD `column_name` varchar(24);