Jump to content

dewdo

Members
  • Posts

    16
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

dewdo's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I am trying to sum fields across rows if a specific condition is true, for example if field 1 from row2 = field 1 from row 4 then SUM field 3 from both row1 and row 4.  except the query has to be more general since there are hundreds of rows .... thanks.
  2. Thanks for the reply. the result set I am looking for is not as specific as that statement seems to require. I need a result set that looks like this:                   Type 1 | Type 2 | Type 3 | Type 4           CP 1      NO        YES      NO      NO           CP 2      YES        YES      NO      NO           CP 3      NO        NO        NO      NO           CP 4      NO        NO        YES      NO Ideas?
  3. dewdo

    Array checking

    My apologies, i just replied to my last message on this thread b/c it was a smilar problem. I made the modification you suggested by get "Incorrect syntax near the keyword 'ORDER'." I did a search but did not see the answer ... do you have any thoughts?
  4. dewdo

    Array checking

    this is MS SQL. will it not work?
  5. dewdo

    Array checking

    Incorrect syntax near the keyword 'IF'. Line 1: Incorrect syntax near ','.
  6. dewdo

    Array checking

    that query did not end up working ... i have this structure I have three tables AllSTypes                          AllCPS                  |types|                            |CPS|                  type 1                              CP 1 type 2                              CP 2 type 3                              CP 3 type 4                              CP 4 AllCombo |CPS|      |types|      |APSID| CP 1        type 2        1 CP 2        type 1        2 CP 2        type 2        3 CP 4        type 3        4 I need results that show a full list of Types and CPS and then says whether there is an entry for that combo in AllCombo or not... that part i think we agree on
  7. I have three tables AllSTypes                          AllCPS                  |types|                            |CPS|                  type 1                              CP 1 type 2                              CP 2 type 3                              CP 3 type 4                              CP 4 AllCombo |CPS|      |types|      |APSID| CP 1        type 2        1 CP 2        type 1        2 CP 2        type 2        3 CP 4        type 3        4 I need results that show a full list of Types and CPS and then says whether there is an entry for that combo in AllCombo or not... ideas?
  8. dewdo

    Array checking

    looks like it will work. thanks for the help!
  9. dewdo

    Array checking

    thanks for helping. i apologize for not spelling it out more clearly earlier in the process.
  10. dewdo

    Array checking

    label2. I am trying to achieve a list where every type of car is shown (table 1), every possible color is shown (table 2) and then a column is inserted that says whether that car comes in that color (table 3). Except, table 3 just has entries where a car does come in that color. I need the results to yes, if its in table three, or no if its not in table three ....
  11. $sql = "SELECT DISTINCT tb1.label, tb2.label2 FROM tb1, tb2, tb3 WHERE '(SELECT tb2.label2 FROM tb2 LEFT JOIN tb3 ON tb2.label2 = tb3.label2)'"; why wont this work? I am trying to display the entire contents of two tables and then show which of the rows match are recorded together in a third table.
  12. dewdo

    Array checking

    $sql = "SELECT DISTINCT tb1.label, tb2.label2 FROM tb1, tb2, tb3 WHERE '(SELECT tb2.label2 FROM tb2 LEFT JOIN tb3 ON tb2.label2 = tb3.label2)'"; why wont this work? I am trying to display the entire contents of two tables and then show which of the rows match are recorded together in a third table.
  13. dewdo

    Array checking

    thank you, that was helpful. If there are three tables [ptypes], [cparties], [eligible] ptypes have all of label1 and cparties have all of label2, eligible matches some of label1 and label2. I need to show a complete list such that there is all ptypes and all cparties and then a yes/no based on what is in eligible .... would this be a union or embedded left join of some sort?
  14. dewdo

    Array checking

    i dont see how that link gets me there. thanks for searching...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.