0

How can I identify the default_week_format in MySQL? I would like to know which default week format my server is using? Values can range between 0 and 7.

Peter
  • 1,224
  • 3
  • 16
  • 28

1 Answers1

3

The SHOW VARIABLES command is what you're looking for.

Try with

SHOW VARIABLES LIKE 'default_week_format'
marcosh
  • 8,780
  • 5
  • 44
  • 74