How to create a MySQL table or store the values in the MySQL table if values is of type python list

30 views Asked by At

I have the dataset where there the multiple columns where the value is of type python list.

How can I store that in the relational database table so that the retrieval also becomes efficient and correct.

Ex.

startup_name   sector
abc            [ML and AI, E-commerce]
xyz            [Manufacturing]
0

There are 0 answers