I have several numbers and I want to insert them in one cell of the row.
I we can insert character and number by this source code:
INSERT INTO <table name>
VALUES (‘character’,
225)
What can I do if I want to insert for example all (225, 0, 127) instead of only 225 in one cell?
thanks