Skip to content
Advertisement

Creating new column from existing column with condition SQL

I need help with one table name as Employee. Table employee consist of four columns “ID” “salary”, “position” and “cumulative_salary” . Position consist of senior and junior status and there salary are in different range. I want to add another column from salary column named as “salary_range”. Now condition for my salary range column is if someone salary lies between 0 – 10K there salary range will be 0-10 in the salary_range column. same conditions for if someone salary is in between 11K-20K there range is 11K-20K like this.

i want a query that generates a separate column that shows in which bucket the salary range falls, and name it salary bucket. The salary buckets can be created in 10K steps, first one will range from 0-10,000 and so on.

something like this

Advertisement

Answer

Here is the the code:

Output will look like this

enter image description here

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement