August 15, 2019 at 5:22 pm
Hi
I have a table with the following table setup
Table A
Name (String)
Surname (Sring)
Address (String)
Employed (String)
Non-Employed (String)
Retired (String)
Table B
Name (String)
Surname (Sring)
Address (String)
Employed Status (String)
I want to insert into table B name, surname, address into there respective columns, but from the 3 columns in Table A for employment, I want to insert into a single Employment Status column in Table B. What is the best way to do this?
Regards
Raxso
August 15, 2019 at 5:41 pm
What are the possible values in the three source columns and how do they map to the target column?
August 15, 2019 at 5:50 pm
Hi
The values will be the same for each column for example:
Employed (String) - "Manager"
Non-Employed (String) - "Fired"
Retired (String) - "Enjoying Life"
Regards
Rax
August 15, 2019 at 6:15 pm
If you have the following - what do you want to do?
Employed = 'Staff', Non-Employed = 'Not Yet', Retired = 'Soon'
Or...
Employed = 'Soon', Non-Employed = 'Getting Hired', Retired = 'Long ways away'
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 15, 2019 at 6:19 pm
Hi Jeffrey
The first option would be a good example to use.
Regards
Raxso
August 15, 2019 at 7:51 pm
If the values are, as you suggest:
Employed (String) - "Manager"
Non-Employed (String) - "Fired"
Retired (String) - "Enjoying Life"
what would you set Employed Status to?
August 15, 2019 at 7:56 pm
Hi
The employment status depending on the Name would be "Manager", "Fired", "Enjoying Life". I basically need to insert 3 different columns into a single column.
Regards
Raxso
August 15, 2019 at 7:57 pm
Hi
The employment status depending on the Name would be "Manager", "Fired", "Enjoying Life". I basically need to insert 3 different columns into a single column.
I just need some examples.
Regards
Raxso
August 15, 2019 at 8:09 pm
I would not recommend that approach - combining discrete data elements into a single column will make it much harder to work with that data.
What is the purpose of combining this data into a single column? How is that going to be utilized?
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 15, 2019 at 8:44 pm
Hi
Can you send me an example on how to add 3 columns to a single column as stated above?
Regards
Raxso
August 15, 2019 at 8:45 pm
I would not recommend that approach - combining discrete data elements into a single column will make it much harder to work with that data.
What is the purpose of combining this data into a single column? How is that going to be utilized?
I agree with this. The query is easy enough to write, but it's not a good idea at all.
August 15, 2019 at 9:01 pm
Hi
It will be used in another table where it will be queried, I just need an example of how to insert the 3 columns into a single column. Can you provide me an example?
Regards
Raxso1
August 15, 2019 at 9:33 pm
Do you want concatenation or coalescence of the 3 columns? Can be 1 and only 1 value per row in these 3 columns? Could all 3 columns have values in a single row?
Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können
August 15, 2019 at 9:39 pm
Do you want concatenation or coalescence of the 3 columns? Can be 1 and only 1 value per row in these 3 columns? Could all 3 columns have values in a single row?
This has already been covered:
The employment status depending on the Name would be "Manager", "Fired", "Enjoying Life". I basically need to insert 3 different columns into a single column.
But I cannot summon the strength to type out the required SQL ... it makes me feel dirty just thinking about it.
August 15, 2019 at 10:34 pm
Well it's still not clear to me. Here are examples of both. If you're choosing concat then make sure table_b has wide enough column to fit (including the spaces).
insert table_b(name_str, surname_str, address_str, employed_status)
select
name_str,
surname_str,
address_str,
concat(employed, ' ', non_employed, ' ', retired)
from
table_a;
insert table_b(name_str, surname_str, address_str, employed_status)
select
name_str,
surname_str,
address_str,
coalesce(employed, non_employed, retired)
from
table_a;
Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können
Viewing 15 posts - 1 through 15 (of 20 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy