I have a model Employees and I would like to have a QuerySet of all rows, but with some specific fields from each row, and not all fields.
Employees
I know how to quer
In addition to values_list as Daniel mentions you can also use only (or defer for the opposite effect) to get a queryset of objects only having their id and specified fields:
values_list
Employees.objects.only('eng_name')
This will run a single query:
SELECT id, eng_name FROM employees