Difference of Character and charset

Asked

Viewed 46 times

0

I’m picking up a few things in SQL, and sometimes I come across 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;

Will you please explain?

1 answer

2


The first has two words, the second has only one :)

Seriously there is no semantic difference, only syntactic.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.