I just need a sql server query for following scenario:

Need a query to get a single record of each vehicle type.
I have a table of Vehicle.
Passenger Car, Pickup Truck, MPV are the vehicle type.
There are 4 record of Passenger Car, 2 records of Pickup Truck and a record of Multipurpose Vehicle (MPV).
so I want a query to get the single record of each type.
Thanks
My desire output:
ID Model VehicleType Owner
1 LTD Crown Victoria Passanger XXXXXXXXXX
2 Tacoma Pickup YYYYYY
3 Explorer Multipurpose Vehicle
This kind of output that I want.
Try
I see your edits. This query gives you exactly what you ask:
Check it here