摘要:
1、此方法用于没有一点提示的情况:依次打开eclipse上面的windows ——preferences ——java ——editor —— content assist ,在右上方有一行“select the proposal kinds contained in the 'default' c 阅读全文
摘要:
新下载的Tomcat7.0 解压缩完了运行tomcat7.exe屏幕一闪就没了 运行tomcat7w.exe弹出个筐指定的服务并未以已安装的服务存在 Unable to open the Service 'tomcat6' 我安装了tomcat7,双击startup.bat可以正常启动Tomcat, 阅读全文
摘要:
--1分组统计各部门下工资>2000 的员工的平均工资select avg(s.sal) from (select * from emp e where e.sal>2000) s group by deptno; --2 统计各部门下平均工资大于 1600 的部门select e.deptno,a 阅读全文
摘要:
子查询 --子查询(内查询)在主查询之前一次执行一次完成;子查询的结果被主查询使用(外查询)。 select * from score s where s.grade > (select s.grade from score s where s.id=2); 为表添加删除新的字段 --添加新的字段 阅读全文
摘要:
.createNewFile() 创建文件 //创建文件public class t { public static void main(String[] args) { File f = new File("D:/20161229/3.txt"); try { f.createNewFile(); ... 阅读全文