Question

Is there a way, via a SQL statement, to ensure a column's default value is an empty string '' instead of NULL?

Was it helpful?

Solution

Yes - use a DEFAULT constraint:

DROP TABLE IF EXISTS `example`.`test`;
CREATE TABLE  `example`.`test` (
  `string_test` varchar(45) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top