--基本函数--select name,count(id) from work_test group by name having count(id)>1--select upper(name),t.*,lower(name),substr(name,1,5) from WORK_TEST t--连表更新/*update work_test set(price)=(select t.price from work_test t where t.price=80.00 and t.id=work_…