I have a text file (i.e. practice.txt) like the following:
COW29,104,F
DUCK49,20,D
BAT2,8,F
FISH52,3,F
except it has thousands of lines.
I would like to write an script that will insert all the rows into a Sybase SQL table like:
name | number | class
---------------------
COW29 | 104 | F
DUCK49 | 20 | D
BAT2 | 8 | F
FISH52 | 3 | F
Thanks!