If you have the data in "column X" = NNGS0182 is there a way to run a query to just pull characters 2-5. (ngs0) or maybe even create a stored procedure to in insert NNGS0182 as NGS0.
Thanks
Thanks
$string = "NNGS0182";
$string = substr($string, 1, 4);
Comment