I have a query that selects a bunch of rows from various tables and orders them alphabetically based on a single field (Fruit), but I want to only start selecting after a certain value is reached. Is there anyway of doing this in MS Access SQL?
Eg:
If the value is Cherry and the table, ordered alphabetically, looks like:
**Fruit:**
Apple
Banana
Cherry
Damson
Orange
--
Then I just want to select Cherry, Damson and Orange. (Sorry I couldn't think of a fruit beginning with E)
Thanks for your help in advance!
Most operators can also be applied to text fields, so in your example you could use:
SELECT *
FROM Fruit
WHERE FruitName >= 'Cherry'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With