The MySQL documentation indicates that to control the language in which the names of days and months are presented, as well as their abbreviations, lc_time_names
must be used.
So to establish this configuration in Spanish I do for example:
SET lc_time_names = 'es_ES';
However, I do not read anything in the documentation about what scope that query has , that is, if it is effective only for that context in which I execute it or if it establishes some kind of definitive configuration in the database handler until it is changed again for something else.
What would then be the scope of SET lc_time_names
?