tags:

views:

1146

answers:

2

How do you rename a table in SQLite 3.0?

+7  A: 

ALTER TABLE foo RENAME TO bar

John Sheehan
+3  A: 

Don't forget that SQLite has a decent online SQL reference that covers these types of commands:

http://www.sqlite.org/lang_altertable.html

Paul Lefebvre