This is pretty much a newbie - best practices question:
say a file:
name#1 (start)
line2
line3
...
line14 (end)
name#2
....
name299
....
<eof>
It's really too messy to split into fields, file process and put it in tabular format. Every 14 lines there's a new "record" - I use the term record very loosely because by record I mean one data item eg. The new "records are separated by name# - so when I see a new name# I know it's a new "record". So in mysql I might have one primary key and just one other filed per a record that would be multiline text.
What I an specifically asking is:
What MYSQL data type can hold multiline text data?
Thanks
say a file:
name#1 (start)
line2
line3
...
line14 (end)
name#2
....
name299
....
<eof>
It's really too messy to split into fields, file process and put it in tabular format. Every 14 lines there's a new "record" - I use the term record very loosely because by record I mean one data item eg. The new "records are separated by name# - so when I see a new name# I know it's a new "record". So in mysql I might have one primary key and just one other filed per a record that would be multiline text.
What I an specifically asking is:
What MYSQL data type can hold multiline text data?
Thanks