default a column with empty string

73.9k Views Asked by At

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

1

There are 1 best solutions below

2
On BEST ANSWER

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;