Showed the entire contents of the table:

SELECT * FROM core_config_data;

Derived:

|id_filters|DisplayName0|razresheno ... |1 |Print |0 

How can I change the value of 0 to 1, but referring to Print I found this answer: How can I change the value of a row in the MySQL table? but there they just change the value, and I need to change the "razresheno" field knowing only the "DisplayName0" field.

    1 answer 1

    UPDATE core_config_data SET razresheno = 1 WHERE DisplayName0 = 'Print'

    If the DisplayName0 field is not unique, then all razresheno fields with this value will be updated. Change the structure of the application

    • Thank you very much - Fedor