I'm getting some things in SQL, and sometimes I run into CHARSET
and CHARACTER
For example:
create database teste
default character set utf8;
And now, creating a table:
create table teste (
teste varchar(30)
) DEFAULT CHARSET utf8;
Can you explain why?