課後作業 day34

2022-08-19 09:09:09 字數 891 閱讀 2915

1. 檢視崗位是teacher的員工姓名、年齡  

select name,age from staff_t where station = 'teacher';

2. 檢視崗位是teacher且年齡大於30歲的員工姓名、年齡

select name,age from staff_t where station = 'teacher' and age > 30;

3. 檢視崗位是teacher且薪資在9000-1000範圍內的員工姓名、年齡、薪資

select name,age,salary from staff_t where station = 'teacher'

and salary between 9000 and 10000;

4. 檢視崗位描述不為null的員工資訊

select * from staff_t where staff_msg is not null;

5. 檢視崗位是teacher且薪資是10000或9000或30000的員工姓名、年齡、薪資

select name,age,salary from staff_t where salary in (10000,9000,30000);

6. 檢視崗位是teacher且薪資不是10000或9000或30000的員工姓名、年齡、薪資

select name,age,salary from staff_t where salary not in (10000,9000,30000);

7. 檢視崗位是teacher且名字是jin開頭的員工姓名、年薪

select name,salary from staff_t where station = 'teacher' and name like 'jin%';

day 11課後作業

coding utf 8 time 2019 1 3 20 03 author endless cloud site file day 11 課後作業.py software pycharm 2.寫函式,接收兩個數字引數,將較小的數字返回.c lambda x,y x if x y else y p...

day01 課後作業

1 寫乙個登陸的程式,最多登陸失敗3次 2 輸入賬號 密碼,如果登入成功,程式結束,提示 歡迎 xx 登入,今天的日期是 xx 3 登入失敗,重新登陸 3 要判斷輸入是否為空,什麼也不輸入,輸入空格都算算空 import datetime username 林俊傑 passwd 123456 shi...

Java課後作業

問題 某機構2006年培養學員8萬人,每年增長25 請問按此增長速度,到哪一年培訓學員人數將達到20萬人?一 1.用while迴圈語句 public class w system.out.println 到 c 年人數達到20萬 輸出結果 2.用do.while迴圈語句 某機構2006年培養學員8萬...