I have a table with special fields name such as \'from\' and \'order\'
(this table used with another cms and I can\'t change table structor)
I want add a record
Either you can configure your Datasources from 'quoteIdentifiers' => false to 'quoteIdentifiers' => true at app.php
OR
One of your columns is using a column name that is reserved by MySQL.
As you can see that FROM and ORDER is a reserve word by MYSQL, you can try changing these words from your database tables. Hoping it works.
For example: "tour_tours" table has a "from" field which makes you the Database Error. so please change these fields from your table and re-try.