I have a table which contains a record of transactions. One field within this table contains a truncated version of a product serial number for SOME records. Truncated serial numbers include the last 8 alphanumeric digits. Other records contain the full serial number. I need to duplicate the contents of this table in a new table where the serial number is no longer truncated. The truncated serial numbers are enough digits to insure that there are no duplicates.
I tried a join query with a wildcard; but, that did not work for me...
Example:
Thanks for any suggestions...
-Allen M
I tried a join query with a wildcard; but, that did not work for me...
Example:
Code:
SELECT ledger.recno, ledger.post_date, ledger.code, customer.ser_no, ledger.amount, ledger.comment FROM
ledger
INNER JOIN customer
ON
%ledger.ser_no LIKE customer.ser_no
Thanks for any suggestions...
-Allen M