CREATE TYPE on MySQL

database, mysql, sql, types

Solution

You cannot. MySQL doesn't have user-defined types. (At least, not in current versions.)

Problem

I couln't create a new data type on MySQL. Query is given below ``` CREATE TYPE PERSON AS OBJECT (NAME VARCHAR (30), SSN VARCHAR (9)); ``` How can I do that on MySQL

Original source

Related problems