现有表Employee,字段:id(int),firstname(varchar),lastname(varchar);以下sql语句错误的是()
A. select firstname,lastname from employee
B. select firstname+.+lastname=name from employee
C. .select firstname,count(*) from employee group byfirstname
D. select distinct firstname,lastname from employee
使用SQL命令将教师表teacher中工资salary字段的值增加,应该使用的命令是()
A. Replace salary with salary+500
B. Update teacher salary with salary+500
C. Update set salary with salary+500
D. Update teacher set salary=salary+500