Forums
Home / Fixing WordPress / SQL
(@darshanpatel)
10 years, 6 months ago
How to insert a comma separated value in table field.
(@catacaustic)
Using SEL that would be something like
INSERT INTO table_name (col_name) VALUES ('1,2,3,4,5')
That’s how it’s done. But… even though you don’t say it, I’m guessing that you’re trying to do something a lot more complicated then just that.