Results 1 to 2 of 2

Thread: non-numerich chars in a field

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Aug 2000
    Posts
    617
    Would some one advise?

    I would like to be able to pick only the rows where the
    zip codes in a given database table contain non-numeric characters

    Thanks a lot..

  2. #2
    Lively Member
    Join Date
    Aug 2000
    Location
    Australia
    Posts
    82
    Try this.

    Assuming your Zip Code field is called "Zip"

    Generate a recordset based on the following SQL call.

    SQLStatement = "Select [Zip] from [Table] where IsNumeric([Zip]) = False

    The above assumes that you are using an Access DB

    Regards

    Adrian
    VB6sp4, Delphi 4 (learning).

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width