Forum Replies Created

Viewing 2 posts - 16 through 17 (of 17 total)

  • RE: Break up full name col into fname, lname cols

    Here is some code I have used in the past:

    Update Names

    Set FullName = RTRIM(FullName)

    Update Names

    Set FullName = LTRIM(FullName)

    Update Names

    Set FullName = REPLACE(FullName, ' ', '!')

    Where FullName LIKE '% %'

    Select FullName...

  • RE: Tracking "dups" in a table.

    I would use this little piece of code. First create a DupeId column in your main table. Then dump in your new data. Note: This will only work with exact...

Viewing 2 posts - 16 through 17 (of 17 total)