2
Answers

how to get the output using inner join query

narasiman rao

narasiman rao

7y
214
1
 
 Employee table as follows


Empid  Empname       Deptid

1             Raj                1
2           Ram               2
3          Suresh          Null
4            Sam             3
5         Vignesh          2

Department table as follows

Deptid         Deptname

1                    HR
2                Accounts
3                 Sales


i want to get output using inner join Empname and Deptid using above two tables Employee and department table 
Answers (2)
0
Nazmul Badsha

Nazmul Badsha

NA 505 13.3k 7y
  1. SELECT Empid,Empname,Deptname  
  2. FROM Employee  
  3. INNER JOIN Department ON Department.Deptid = Employee.Deptid  
This is the best code.
0
Tapan Patel

Tapan Patel

NA 8.1k 101k 7y
  1. SELECT Empid,  
  2.             Empname,  
  3.             Deptname  
  4. FROM Employee   
  5. INNER JOIN Department ON Department.Deptid = Employee.Deptid