vote up 0 vote down star

Please help me to create domain in MySQL. I have tried to run the followoing statement in MySQL but got syntax error: create domain age as int(2);

flag

2 Answers

vote up 2 vote down

MySQL doesn't support user-defined domains, so its not possible to run a CREATE DOMAIN statement.

link|flag
and what about MS SQL Server? – Wilson Nov 7 at 18:46
MS SQL does support user-defined types. They can be created with CREATE TYPE. – Phil Ross Nov 7 at 18:52
vote up 1 vote down

Your syntax is not ok. I don't think that CREATE DOMAIN is supported by MySQL.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.