//语法select
字段列表
from
表名列表
where
条件列表
groupby
分组字段
having
分组后的条件
orderby
排序
limit
分页限定
为了更好的学习这里给出基本表数据用于查询操作
createtable student (
id int,
name varchar(20),
age int,
sex varchar(5),
address varchar(100),
math int,
english int);insertinto student
(id,name,age,sex,address,math,english)values(1,'马云',55,'男','杭州',66,78),(2,'马化腾',45,'女','深圳',98,87),(3,'马景涛',55,'男','香港',56,77),(4,'柳岩',20,'女','湖南',76,65),(5,'柳青',20,'男','湖南',86,NULL),(6,'刘德华',57,'男','香港',99,99),(7,'玛德',22,'女','香港',99,99),(8,'德玛西亚',18,'男','南京',56,65);
单表基本字段查询
select name,age from student;
去除重复结果集
//distinct -翻译- 不同的selectdistinct address from student;
计算math和english分数和
select name,math,english,math+english from student;//判断空值 如果字段为null那么设置为0select name,math,english,math+ifnull(english,0)from student;
起别名
//这里的 AS 可以省略select name,math,english,math+ifnull(english,0)AS 总分 from student;
216.组合总和III
题目链接
https://leetcode.cn/problems/combination-sum-iii/description/
题目描述 思路
自己写的效率会慢一些,而且没有用到剪枝
class Solution {List<List<Integer>> list new ArrayList<>();List<Integer> lis…
#!/bin/bash# Define output file
current_date$(date "%Y%m%d") # Gets the current date in YYYYMMDD format
output_file"server_security_inspection_report_${current_date}.txt"# Empty the file initially
echo > $output_file# 获取巡检时间 (…