同一表中字段A中的值复制到字段B中的SQL语句

a表中m字段的记录复制到m字段中:

update a set n=m

如果要加个条件,比如从id=100起开始复制:

update a set n=m where id >= 100