How could I shorten the following sql query (where I return rows which start with one of four different strings in column "mycolumn"):
select * from mytable where mycolumn LIKE 'xyz%'
OR mycolumn LIKE 'abc%'
OR mycolumn LIKE 'def%'
OR mycolumn LIKE 'gth%'
J.