sql - CREATE TYPE on MySQL -
I can not create a new data type on MySQL, the query is given below
Type person as object (name VARCHAR (30), SSN VARCHAR (9));
How can I do this on MySQL
MySQL can not contain user-defined types I (at least, not in the current version.)
Comments
Post a Comment