我在MySql数据库中创建了一个名为“salary_mst”的表。 表字段是
id -> auto increment
name -> varchar(50)
salary -> double
现在,如果有人不在工资中插入值,则应该存储默认值0.00 我怎么能这样做?
答案 0 :(得分:32)
ALTER TABLE `table` ADD COLUMN `column` FLOAT(10,2) NOT NULL DEFAULT '0.00'
答案 1 :(得分:14)
create table salary_mst (
id int not null primary key auto_increment,
name varchar(50),
salary double not null default 0
);
测试:
insert into salary_mst (name) values ('foo');
select * from salary_mst;
+----+------+--------+
| id | name | salary |
+----+------+--------+
| 1 | foo | 0 |
+----+------+--------+