oracle - How should i get the following output in SQL? -
i have 2 tables employee , grade,want output third table (i.e output table) ? if possible how ?
you can try this
select e.name , g.grade employeetable e, gradetable g e.salary >= g.min , e.salary <= g.max
Comments
Post a Comment