I found a similar questions are regarding this but I couldn't get it to for for my issue..
Lets say I have the string compiled of many many lines:
1,Users,2015-01-20\n
1,System,2015-01-18\n
....
....
I need to put it into existing table:
╔══════════╦═══════════╦══════════╗
║ SomeNum ║ SystemType║ Date ║
╠══════════╬═══════════╬══════════╣
enter code here
So it would look like:
╔══════════╦═══════════╦══════════╗
║ SomeNum ║ SystemType║ Date ║
╠══════════╬═══════════╬══════════╣
║ 1 ║ Users ║2015-01-20║
║ 1 ║ System ║2015-01-18║
How do I do that? I must say I know little to nothing about SQL so forgive me for any stupid Q that will follow, thank you :)