數據庫查詢問題:列出各個部門中工資高於本部門的平均工資的員工數和部門號,並按部門號排序

一、先建立要用到的例子表,並在表裏面插入記錄,在sqlserver中作測試  Sql代碼   create table employee(   id int  identity(1,1) primary key ,   name varchar(50),   salary bigint,   deptid int);      insert into employee values('zs',10
相關文章
相關標籤/搜索