摘要:
在路径下打开cmd;新建文本格式之后粘贴进去代码,之后更改后缀名称为.bat;拖进cmd中; @echo off Setlocal Enabledelayedexpansion set "str= " for /f "delims=" %%i in ('dir /b *.*') do ( set " 阅读全文
摘要:
switch。。。case public static void main(String[] args) { int result = 0; int i = 2; switch (i) { case 1: result = result + i; //i为2,此处不运行 System.out.pri 阅读全文
摘要:
第一题 用聚合函数,分组可查出 select * FROM student GROUP BY name HAVING MIN(fenshu>=80) 用子查询先查出分数小于80的,在查出不在这其中的函数 SELECT distinct name from student where name not 阅读全文