# Adjusting orderprice

If you're adding a large number of vehicles, adjusting prices can be time-consuming, but if you want static prices - for example, for dealerships to order vehicles at 10% of the selling price - you can do so very easily by adjusting the values in the 'price' column in the 'vehicles' table. Then, all you need to do is input the following query into your database to adjust all order prices based on a percentage of the vehicle price.

***

{% tabs %}
{% tab title="Change of order price" %}
Query to adjust orderprice as 10% of price value

```sql
UPDATE vehicles SET `orderprice` = `price` * 0.1 WHERE `model` IS NOT NULL AND `model` != '';
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.vames-store.com/assets/vms_vehicleshopv2/guides/adjusting-orderprice.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
