I have a table that shows account numbers
Account Numbers
3000
4000
4500
5000
I would like to use SQL to add a column called Flag to the table and flag accounts with a word character when the account number is within a particular range.
For example if the account number is between 3000 and 4000 add the word LOW to the column adjacent to the account column and put LOW next to 3000 and 4000 account numbers.
Account Number Flag
3000 LOW
4000 LOW
4500
5000
I appreciate your help
Account Numbers
3000
4000
4500
5000
I would like to use SQL to add a column called Flag to the table and flag accounts with a word character when the account number is within a particular range.
For example if the account number is between 3000 and 4000 add the word LOW to the column adjacent to the account column and put LOW next to 3000 and 4000 account numbers.
Account Number Flag
3000 LOW
4000 LOW
4500
5000
I appreciate your help