1

I am using MySQL on Windows 10.

Is there any way to set case sensitive as default?

To have case sensitivity in any query, whether it's column name or value name.

Mike Lischke
  • 48,925
  • 16
  • 119
  • 181
ldragicevic
  • 621
  • 4
  • 11
  • 22
  • 1
    Column names are never case sensitive on any platform. Values (if you mean that by value names) depend on the definition of your column (e.g. binary would use case sensitive comparison). You can make tablenames (and some other objects) case sensitive, but it is very discouraged on windows (because you can still not have two tables with the same name and might result in some problems). Maybe you should elaborate a bit on what you are trying to achieve. – Solarflare Jul 19 '17 at 18:33

1 Answers1

0

I don't really knows about case sensitive that you meaning above

But I though this answer help you out

Flix
  • 444
  • 8
  • 20