Jun 8, 2005 #1 Newbi1 Programmer Apr 4, 2005 64 US I am having a brainf*&*t today. Simple string query to remove the first character off of the string. They could be various lengths so just need to cut off the leading char.
I am having a brainf*&*t today. Simple string query to remove the first character off of the string. They could be various lengths so just need to cut off the leading char.
Jun 8, 2005 1 #2 jbenson001 Programmer Jan 7, 2004 8,172 US Select Right(<col>, Len(LTrim(RTrim(<col>))) - 1 ) from <table> Upvote 0 Downvote