我哦用mysql在表中新添加了一列,添加完显示成功后又出现了一句这段话是什么意思啊?
mysql操作如下
mysql> use student;
Database changed
mysql> alter table myemp add column hiredate timestamp not null default current_
timestamp;
Query OK, 0 rows affected (0.22 sec)
Records: 0 Duplicates: 0 Warnings: 0
影响的记录,重复的记录,警告的记录个数
你的表中没有任何记录,所以零行受到影响,零行有重复,没有警告。