Skip to content

Commit d7dd7fa

Browse files
committed
Update and rename problem30.c to problem32
1 parent e86335c commit d7dd7fa

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

problem32

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
//Solved by Krishna Sumedh, IT
2+
3+
4+
*CREATE TABLE emp(empid int,name varchar(500),deptid int,sal float );
5+
6+
*CREATE TABLE dept(deptid int,deptname varchar(500));
7+
8+
*select emp.name from emp,dept.deptname from dept where emp.deptid=dept.deptid;
9+
10+
*select name from emp where emp.deptid=NULL;
11+
12+
*select name from emp where sal< avg(sal);

0 commit comments

Comments
 (0)