首页
文章
活动
博客
图书
招聘
Search
登录
注册
已有
1784
人访问
王肖璐 ID.10920
博客
(2)
王肖璐的博客
数据库练习
王肖璐
2012-03-01
1. 列出至少有一个雇员的所有部门。 select * from dept where deptno in (select deptno from emp group by deptno having count(*)>1); 2. 列出薪金比“SMITH”多的所有雇员。 select * from emp where sal>(select sal from em
184°
/
1846 人阅读
/
0 人点赞
/
0 条评论
软件测试基本概念
王肖璐
2012-03-01
软件测试的基本概念:软件生命周期: software life cycle:需求分析 requirement analysis软件设计 software design程序编码 program coding软件测试 software testing运行维护 running attention3、测试环境=软件+硬件+网络如何搭建测试环境:(1)真实(2)干净(3)无毒(4)独立4、测试用例=输入+输
337°
/
3355 人阅读
/
3 人点赞
/
2 条评论