Apr 5, 2007 #1 sonny1974 Technical User Feb 25, 2007 161 US I know this is easy, but the search is down, sorry just cant remember how to do it in sql i have a field called lot_nbr the field examples is R92414 how do i take out the first character so the result is 92414
I know this is easy, but the search is down, sorry just cant remember how to do it in sql i have a field called lot_nbr the field examples is R92414 how do i take out the first character so the result is 92414
Apr 5, 2007 #2 SantaMufasa Technical User Jul 17, 2003 12,588 US Code: SELECT substr(lot_nbr,2) from <table>; Mufasa (aka Dave of Sandy, Utah, USA) [I provide low-cost, remote Database Administration services: www.dasages.com] Upvote 0 Downvote
Code: SELECT substr(lot_nbr,2) from <table>; Mufasa (aka Dave of Sandy, Utah, USA) [I provide low-cost, remote Database Administration services: www.dasages.com]
Apr 5, 2007 Thread starter #3 sonny1974 Technical User Feb 25, 2007 161 US thank you , Upvote 0 Downvote