I couln’t create a new data type on MySQL. Query is given below
x
CREATE TYPE PERSON AS OBJECT
(NAME VARCHAR (30),
SSN VARCHAR (9));
How can I do that on MySQL
Advertisement
Answer
You cannot. MySQL doesn’t have user-defined types. (At least, not in current versions.)