Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Subquery

    I am trying to update a table with data in a "look up table." Specifically, I
    have a table that contains zip codes but is missing both city & state fields.
    The zip codes are 9 digits (5 digit zip code followed by 4 zeros) in one table
    & 5 digits in another. I cannot seem to join the 2 tables because of the
    discrepency in values. I've tried regexp with no luck.
    Any suggestions would be greatly aprreciated.

    Ruszaj Guest

  2. Similar Questions and Discussions

    1. Avoiding subquery
      Hi, if anyone feels like a little quiz (but I don't know the answer), just for interest: Is it possible to rewrite this: SELECT...
    2. using list in subquery
      I have a query that I would like to pass a list of values to use in the WHERE statement. How do I use a list in the WHERE statement? Example:...
    3. SQL subquery question
      I have a query running inside of Coldfusion webpage. query blah cfoutput query blah { query another_blah { cfoutput another_blah
    4. Select From SubQuery
      Yes you can create pseudo tables and reference them in the outer query as you have done. -- HTH, SriSamp Please reply to the whole group only! ...
    5. subquery with more than 1 fields
      select * from ordermaster where (orderid,customerid) in select orderid,customerid from orderdetail the sql can't be run in ms sql and is there...
  3. #2

    Default Re: Subquery

    The syntax is database specific, but you want to do something like this:

    update t1
    set city = t2.city, state = t2.state
    from t1 join t2 on zipcode = substr(t2.zipcode, 1, 5)
    where city is null

    Originally posted by: Ruszaj
    I am trying to update a table with data in a "look up table." Specifically,
    I have a table that contains zip codes but is missing both city & state fields.
    The zip codes are 9 digits (5 digit zip code followed by 4 zeros) in one table
    & 5 digits in another. I cannot seem to join the 2 tables because of the
    discrepency in values. I've tried regexp with no luck.
    Any suggestions would be greatly aprreciated.



    Dan Bracuk Guest

  4. #3

    Default Re: Subquery

    Thanks!:D
    Ruszaj Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139