Using the DUAL table, how can I get a list of numbers from 1 to 100?
SELECT * FROM `DUAL` WHERE id>0 AND id<101
The above query is written in SQL in the database.