Quantcast
Channel: [SMD] - 8L0G5PH3R3 » Web Development
Viewing all articles
Browse latest Browse all 10

MySQL Case Sensitive On Linux

$
0
0

A good rule to remember. MySQL are case sensitive only table and database identifiers and only on platforms with case-sensitive filenames (Linux/Unix). So, If you’re developing a system. Do remember. MySQL are case sensitive. An example:

Bad Practice:
select * from Project

Good Practice:
SELECT * FROM project

Ref: Identifier Case Sensitive


Viewing all articles
Browse latest Browse all 10

Trending Articles