Pretty new to sql so im looking for a simple way to break a field with multiple strings that are comma delimited into new rows, for example:
 user    names
 ------------------------
 1         john, Mike, Steve
 2         chris, phil , mark
to
 user    names
 -----------------------
  1       john
  1       mike
  1       steve
  2       chris
  2       phil
  2       mark
