摘要:
select id 学号, name 姓名, ifnull(score,0) 成绩, case when score>=90 then '优秀' when score>=80 then '良好' when score >=70 then '一般' when score >=60 then '及格' 阅读全文
摘要:
关系数据库的注释 -- 单行注释 /* 多行注释 */ 数据类型 数值 整数 只能保存整数,如果是小数,则自动四舍五入取整。 mediumint smallint tinyint(6) zerofill int(8) bigint decimal(8,0) 小数实型 float(p,s) numer 阅读全文
摘要:
mysql 配置文件及端口号设置方法 win mysql 软件目录 或 c:根目录 c:\windows d:\mysql\my.ini linux my.cnf /etc/my.cnf /etc/mysql/my.cnf d:\mysql\my.ini[client]port=3306defaul 阅读全文
摘要:
数据库分类 关系数据库 SQL mysql 1 非关系数据库 NoSQL mongodb 4 redis 2 Elasticsearch 3 mysql (MariaDB) 完全开源 oracle sqlserver oracle mysql mysql 官方网站 http://www.mysql. 阅读全文
摘要:
package j09; import java.awt.BasicStroke;import java.awt.Color;import java.awt.Graphics2D;import java.awt.image.BufferedImage;import java.io.File;impo 阅读全文
摘要:
对一个图像实现生成缩略图 package j09; import java.awt.Graphics;import java.awt.image.BufferedImage;import java.io.File;import java.io.IOException; import javax.im 阅读全文