document.write('

运行下面的SQL命令,可以在雇员表中,把id列=5 的行的first_name列值改为“Adam”: UPDATE employees SET first_name="Adam" WHERE id=5;

');