I'm new to mysql, my question is that is this correct?
CREATE TABLE ... (
/* some definition ommitted. */
About varchar(300) NOT NULL DEFAULT '...',
CHECK(About LIKE 'ABOUT: %, DATE: %')
);
By searching, all results show LIKE
within SELECT
, so is it syntactically correct to be used in CHECK
?