Hello,
I have a table defined as:
CREATE TABLE MKProperties (id INTEGER PRIMARY KEY AUTOINCREMENT, obj_id 
INTEGER, prop_key TEXT, prop_value TEXT, UNIQUE(obj_id, prop_key))

In that table there some rows like:
obj_id  prop_key        prop_value
1       PARENTID        0
1       RESOURCE_ORDER  0
2       PARENTID        0
2       RESOURCE_ORDER  1
3       PARENTID        0
3       RESOURCE_ORDER  3

I need a query that returns all the obj_id with prop_key='PARENTID' AND 
prop_value='0' but ordered by prop_value WHERE prop_key='RESOURCE_ORDER'.
Any help?
--
Marco Bambini
http://www.sqlabs.com






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

Reply via email to