Is there a way to do the following in SQLite?
select name from table where number >= ALL (
I doubt that there is an ALL() operator in SQLite. However, you can write something that is functionally equivalent using MAX() and MIN().
SELECT name FROM table WHERE number >= (SELECT MAX(another_number) FROM another_table WHERE ...)