SQLite3.
Can I make a field AUTOINCREMENT after made a table?
I mean ,I make a table.
then , after that, can I make it as a AUTOINCREMENT ?
or do i have to say AUTOINCREMENT
when I make a table>
Is it only the chance to make it AUTOINCREMENT ?
|
SQLite3. Can I make a field AUTOINCREMENT after made a table? I mean ,I make a table. then , after that, can I make it as a AUTOINCREMENT ? or do i have to say AUTOINCREMENT Is it only the chance to make it AUTOINCREMENT ? | |||
|
feedback
|
|
Background:
http://www.sqlite.org/faq.html#q1 SQLite limitations:
http://www.sqlite.org/lang_altertable.html Hack seems to exist:
http://www.mail-archive.com/sqlite-users@sqlite.org/msg26987.html | |||
|
feedback
|
|
SELECT the highest ID from your "pseudo-primary key column" and then use it for your INSERT. Here is a complete example that will run in PHP 5.3:
Output: "1 - Just a test." - 2 - 3 - ... - "10 - Just a test." PS: Notice that it creates unnecessary overhead - better to use "id INTEGER PRIMARY KEY" if possible. | |||
|
feedback
|
|
From the SQLite Faq Short answer: A column declared INTEGER PRIMARY KEY will autoincrement So when you create the table, declare the column as INTEGER PRIMARY KEY and the column will autoincrement with each new insert. Or you use the SQL statment ALTER to change the column type to an INTEGER PRIMARY KEY after the fact, but if your creating the tables yourself, it's best to do it in the initial creation statement. | |||
|
feedback
|
|
Yes Do you have phpmyadmin installed? I believe if you go to the 'structure' tab and look along the right columnn (where the field types are listed) - I think you can change a setting there to make it autoincrement. There is also a SQL query that will do the same thing. | |||
|
feedback
|
|
You cannot alter columns on a SQLite table after it has been created. You also cannot alter a table to add an integer primary key to it. You have to add the integer primary key when you create the table. | |||
|
feedback
|
|
While the Sqlite site gives you an example how to do it with a table with only a three fields, it gets nasty with one of 30 fields. Given you have a table called OldTable with many fields, the first of which is "ID" filled with integers. Make a copy of your database for backup. Using the command program dot commands,
Open Oldtable.txt in Microsoft Word or a grep like text editor. Find and Replace your Integer field elements with NULL.(You may need to adjust this to fit your fields). Edit the Create Table line so the field that was defined as Integer is now INTEGER PRIMARY KEY AUTOINCREMENT. Save as NewTable.txt Back in the command program dot
Done. ID is now autoincrement. | ||||
|
feedback
|
|
You can dump the content to a new table:
And rename the table:
| |||
|
feedback
|
|
Simple Answer is as below,
and you are done. | |||
feedback
|