Is there a way to import a csv file or transform a table with delimited compound values?
Example:
CSV file has: | years | model | | -------- | -------------- | | 2019,2020,2021 | ABC |
Database should end up like: | year | model | | -------- | -------------- | | 2019 | ABC | | 2020 | ABC | | 2021 | ABC |
I am using HeidiSQL as my database GUI, so if it works with that, great! Otherwise I can run it through the command line if necessary.