create table contacts (id integer primary key autoincrement, name text, address text, phone text);
in above line of code i want to store an array of phone numbers on place of a single number means smething like :-
create table contacts (id integer primary key autoincrement, name text, address text, phone array);
so my queestion is how to create a colon which can save an array object in it????? which data type should i used?????
in above line of code i want to store an array of phone numbers on place of a single number means smething like :-
create table contacts (id integer primary key autoincrement, name text, address text, phone array);
so my queestion is how to create a colon which can save an array object in it????? which data type should i used?????