I just create table as below:
CREATE TABLE msglog (uuid varchar primary key,uid varchar,...)
After several days run, I found something very strange in it;
I exec sql: select rowid,* from msglog where rowid >53 and rowid < 55 and
msgtype='TM' order by uuid
then I get two rows:
rowid uuid time
54 {EE44A54B-6502-4566-A513-D167255BDB7E} 1207635900 TM
54 {EE44A54B-6502-4566-A513-D167255BDB7E} 1207636764 TM
I exec sql: select rowid,* from msglog where rowid=54 and msgtype='TM'
order by uuid
then I get this:
rowid uuid time
54 {EE44A54B-6502-4566-A513-D167255BDB7E} 1207636764 TM
why primary key and rowid can appear twice?
anybody know this?
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
- [sqlite] SQL error: SQL logic error or missing database BanuPrakash G
- Re: [sqlite] SQL error: SQL logic error or missing data... Ken
- Re: [sqlite] SQL error: SQL logic error or missing data... Prabowo Murti
- Re: [sqlite] SQL error: SQL logic error or missing ... P Kishor
- Re: [sqlite] SQL error: SQL logic error or missing ... BanuPrakash G
- Re: [sqlite] SQL error: SQL logic error or miss... BanuPrakash G
- Re: [sqlite] SQL error: SQL logic error or ... Ken
- Re: [sqlite] SQL error: SQL logic erro... BanuPrakash G
- Re: [sqlite] SQL error: SQL logic ... BanuPrakash G
- Re: [sqlite] SQL error: SQL lo... Kees Nuyt
- [sqlite] Why "Primary Key&quo... 彭卫
- Re: [sqlite] SQL error: SQL logic error or ... Dennis Cote
- Re: [sqlite] SQL error: SQL logic error or miss... BanuPrakash G

