Currently I am developing website in Django & I need to convert some djnago query to sql equivalent query.
Purchase_order.objects.filter(query).order_by(id)[start: (start+length)]
I want to convert above django query into sql type of query.
Is there any way availble to convert it into sql also.