I am running my Oracle query here but it's not working but the same query is working in SQL Server
Here is my query:
SELECT d.dept_code,
d.dept_name,
d.dept_desc,
e.comp_name
FROM dept_master d
inner join comp_master e
ON d.comp_id = e.comp_id
where in dept_master.comp_id value is the same as in Dept_Master table.