MySQL基礎的小練習

2021-08-26 20:38:00 字數 708 閱讀 3190

要求:

使用 mysql 完成

完成下面的功能

1.將所有員工薪水修改為5000元。

2.將姓名為』zhangsan』的員工薪水修改為3000元。

3.將姓名為』lisi』的員工薪水修改為4000元,***改為female。

4.將xiaohong的薪水在原有基礎上增加1000元。

create table employee(

id int,

name varchar(20),

*** varchar(10),

birthday date,

salary float,

resume text

);

完成檢視表資料效果圖:查詢表資料—> select * from (表名稱)我這裡是employee

update employee set salary=3000 where name="zhangsan";

select salary from employee where name="xiaohong"l;

update employee set alary=5000+1000 where name="xiaohong";

基礎篇 練習 小練習1 4

小練習1 寫出程式結果 package com.test4 class test public class lianxi 2 extends test lianxi 2 string s public static void main string args 結果 小練習2 寫出程式結果 packa...

MySQL基礎練習

二.數學函式 1 abs 絕對值 select abs 2.4 2 ceil 向上取整 返回 該引數的最小整數 select ceil 1.09 3 floor 向下取整 返回 該引數的最大整數 select floor 1.09 4 round 四捨五入 select round 1.871234...

python常見基礎小練習

1.輸入乙個年份,判斷是否為閏年。條件1 不能被100整除且能被4整除 條件2 被400整除 世紀年 year int input 請輸入乙個年份 if year 4 0 and year 100 0 print d年是閏年 year elif year 400 0 print d年是閏年 year...