jose isaias cabrera <cabrera@...> writes:

> 
> 
> Greetings.
> 
> I would like to get a bunch of records of IDs that I already know. For 
> example, this table called Jobs,
> rec,...,data,...
> 1,...,aaa,...
> 2,...,zzz,...
> ...
> ...
> 99,...,azz,...
> 
[...]


What about

SELECT *
FROM table
WHERE id BETWEEN 1 AND 99;

greetings
Oliver




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

Reply via email to