SQL commands are not case-sensitive. For example:
SELECT name FROM students;
select name from students;
SeLeCt name FROM students;
All three queries will give the same result.
SQL commands are not case-sensitive. For example:
SELECT name FROM students;
select name from students;
SeLeCt name FROM students;
All three queries will give the same result.
Leave a Reply