This question may seem a bit basic but can't seem to Google it up. Maybe it's too basic, no one bothered to make a article or forum post about it.
Anyway, I have a table called locations. I wish to call the row with the value 1, 2 and 3 from the same column. I have been using this method so far:
SELECT * FROM locations WHERE location_id='1' OR location_id='2' OR location_id='3'
However, is there a much simpler way without typing it out all over again. It is the same column afterall.