CREATE TABLE movies(id integer,title text,unique(id))

Generally I have an unique id from imdb but some times the movie isn't
available.
I understand that there is a column called rowid that is the primary key.
I would like to insert the rowid on the id column when I don't have an id
for the movie.

Example:
insert into movies values(rowid,'title1');

How can I do that?


-- 
View this message in context: 
http://old.nabble.com/rowid-of-the-current-insert-tp26725353p26725353.html
Sent from the SQLite mailing list archive at Nabble.com.

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to