sql 多條件修改

多添件修改 要求:把 sex=‘男’,age最大的 對應的sal 改爲 700,數據結構如下圖: 1.查詢sex=‘男’,age最大的 sql : select max(age) m from emp where sex = ‘男’ select m FROM (select max(age) m from emp where sex = ‘男’) t 2.修改 sql: update emp s
相關文章
相關標籤/搜索