Inserting an array into sqlite3 python

前端 未结 3 761
闹比i
闹比i 2020-12-11 11:41

I have a list/array of strings:

l = [\'jack\',\'jill\',\'bob\']

Now I need to create a table in slite3 for python using which I can insert

3条回答
  •  醉酒成梦
    2020-12-11 11:52

    This is not the way to go. You should consider creating another table for names with foreign key to names.

提交回复
热议问题