How would I do the following query?
SELECT * FROM title WHERE id LIKE '12345%'
What I currently have is:
Title.objects.get(id='12345')
Which obviously doesn’t do the LIKE% (and the icontains does both). What would be the correct query here?
https://docs.djangoproject.com/en/dev/ref/models/querysets/