Enum type with values ​​containing spaces on it

Can enum values ​​contain spaces on it?

For example, ENUM ('item1', 'item2', 'item 3').

It is allowed?

I am using MySql.

+3
source share
1 answer

Why not? A line with a space remains a line! http://dev.mysql.com/doc/refman/5.0/en/enum.html

+6
source

Source: https://habr.com/ru/post/1768986/


All Articles