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 ?

i have employee table following data

similarly have garde table following data

is possible following output ? if yes how ?

you can try this

select e.name , g.grade  employeetable e, gradetable g   e.salary >= g.min  ,  e.salary <= g.max  

Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -