G
Guest
I use a query to seperate a field.
SELECT Right([filler_0001],37) AS Item_no, Left([filler_0001],5) AS
Cus_type_CD, dbo_OEPRCFIL_SQL.prc_or_disc_1
FROM dbo_OEPRCFIL_SQL
ORDER BY Right([filler_0001],37);
Here is my issue, after seperation the (Item_no) field has trailing null
characters. How can I remove them?
SELECT Right([filler_0001],37) AS Item_no, Left([filler_0001],5) AS
Cus_type_CD, dbo_OEPRCFIL_SQL.prc_or_disc_1
FROM dbo_OEPRCFIL_SQL
ORDER BY Right([filler_0001],37);
Here is my issue, after seperation the (Item_no) field has trailing null
characters. How can I remove them?