There is a table_verif
table where I need to insert data, here is an example of fields and records for this table:
call_id | datetime | process_name | param_1 | param_2 | param_3 | param_ 4 |
------------------------------------------------------------------------------------------
1234567 | 29.12.2022| verification process | greeting| presentation | result | waiting |
---------------------------------------------------------------------------------------
And there is my table my_table with entries:
call_id | datetime | process_name | param_1 |
--------------------------------------------------------------
1234567 | 29.12.2022 | complaints | Establishing contact |
--------------------------------------------------------------
1234567 | 29.12.2022 | complaints | Identification |
--------------------------------------------------------------
1234567 | 29.12.2022 | complaints | Num specification |
--------------------------------------------------------------
1234567 | 29.12.2022 | complaints | Data transfer |
I need to translate these four records into a table_verif
format:
call_id| datetime |process_name| param_1 | param_2 | param_3 | param_4
--------------------------------------------------------------------------------------------
1234567|29.12.2022|complaints |Establishing contact|Identification|Num specification|Data transfer
I took it shortly to param_4, but in practice it starts with param_1 and ends with ..param_9