Get top 1 row value from third table while joining 3 tables mssqlTop 2 rows per partition from an absolute...

Client team has low performances and low technical skills: we always fix their work and now they stop collaborate with us. How to solve?

Does an object always see its latest internal state irrespective of thread?

Why doesn't H₄O²⁺ exist?

Is it possible to run Internet Explorer on OS X El Capitan?

Paid for article while in US on F-1 visa?

What typically incentivizes a professor to change jobs to a lower ranking university?

infared filters v nd

Has there ever been an airliner design involving reducing generator load by installing solar panels?

What's the point of deactivating Num Lock on login screens?

meaning of に in 本当に?

Did Shadowfax go to Valinor?

dbcc cleantable batch size explanation

Does detail obscure or enhance action?

How much of data wrangling is a data scientist's job?

Why is 150k or 200k jobs considered good when there's 300k+ births a month?

Why can't I see bouncing of a switch on an oscilloscope?

Is it legal for company to use my work email to pretend I still work there?

How to determine what difficulty is right for the game?

Are astronomers waiting to see something in an image from a gravitational lens that they've already seen in an adjacent image?

Today is the Center

Why do I get two different answers for this counting problem?

What does the "remote control" for a QF-4 look like?

Watching something be written to a file live with tail

What defenses are there against being summoned by the Gate spell?



Get top 1 row value from third table while joining 3 tables mssql


Top 2 rows per partition from an absolute value date differenceHelp with a complicated MySQL Query inserting data using select from 2 tablescount rows with same value and get column from other tableDistinct column in an inner join query sqlDISTINCT Query on an INNER JOINConcatenate multiple columns into one column (,) separatedHow can I properly merge the rows of several table with default values?MySQL: Grouping with conditionParallel updates on header and line item tables in SSISjoin two tables, include one row from the parent table for each primary key






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







3















I am new to mssql .here I need to get some data using joins between three tables .



Header join Lines join Images --> Result



Header Table :



enter image description here



Line Table :



enter image description here



For each header record we can have multiple line items .



Images Table :



enter image description here



Each Image will have unique Image or multiple images .Need to get 1 image url from the list of items for the header record.



Result Set :



enter image description here



Query :



SELECT HT.O_ID,
HT.Type,
HT.Total,
IM.Image

FROM HEADER_TABLE HT

JOIN LINE_ITEM_TABLE LIT
ON LIT.O_ID = HT.O_ID

JOIN IMAGE_TABLE IT
ON IT.IMAGE = LIT.ITEM_ID

WHERE IT.SECTION = 'Retail'


This query returns multiple rows .But I need one unique row for each Header record.



Can anyone help me to fix .










share|improve this question


















  • 4





    Hi and welcome to DBA.SE! The table create + insert statements could be useful to get an answer faster. (Testing purposes)

    – Randi Vertongen
    Mar 19 at 13:32











  • I need one unique row for each Header record. If so you MUST to build a criteria which will say what record from all record pack with the same header must be returned.

    – Akina
    Mar 19 at 13:32













  • Can you check and possibly update a couple of things in your question? Your SQL statement as currently written should return no rows; the second join needs to say on IT.ITEM_ID = LIT.ITEM_ID. Also, the sample data that you've included doesn't show any duplicates on the ITEM_ID field, so it doesn't look like the query (with the corrected join) would have any duplicates either. Are there actually multiple rows per Item ID in that table?

    – Hellion
    Mar 19 at 17:34


















3















I am new to mssql .here I need to get some data using joins between three tables .



Header join Lines join Images --> Result



Header Table :



enter image description here



Line Table :



enter image description here



For each header record we can have multiple line items .



Images Table :



enter image description here



Each Image will have unique Image or multiple images .Need to get 1 image url from the list of items for the header record.



Result Set :



enter image description here



Query :



SELECT HT.O_ID,
HT.Type,
HT.Total,
IM.Image

FROM HEADER_TABLE HT

JOIN LINE_ITEM_TABLE LIT
ON LIT.O_ID = HT.O_ID

JOIN IMAGE_TABLE IT
ON IT.IMAGE = LIT.ITEM_ID

WHERE IT.SECTION = 'Retail'


This query returns multiple rows .But I need one unique row for each Header record.



Can anyone help me to fix .










share|improve this question


















  • 4





    Hi and welcome to DBA.SE! The table create + insert statements could be useful to get an answer faster. (Testing purposes)

    – Randi Vertongen
    Mar 19 at 13:32











  • I need one unique row for each Header record. If so you MUST to build a criteria which will say what record from all record pack with the same header must be returned.

    – Akina
    Mar 19 at 13:32













  • Can you check and possibly update a couple of things in your question? Your SQL statement as currently written should return no rows; the second join needs to say on IT.ITEM_ID = LIT.ITEM_ID. Also, the sample data that you've included doesn't show any duplicates on the ITEM_ID field, so it doesn't look like the query (with the corrected join) would have any duplicates either. Are there actually multiple rows per Item ID in that table?

    – Hellion
    Mar 19 at 17:34














3












3








3








I am new to mssql .here I need to get some data using joins between three tables .



Header join Lines join Images --> Result



Header Table :



enter image description here



Line Table :



enter image description here



For each header record we can have multiple line items .



Images Table :



enter image description here



Each Image will have unique Image or multiple images .Need to get 1 image url from the list of items for the header record.



Result Set :



enter image description here



Query :



SELECT HT.O_ID,
HT.Type,
HT.Total,
IM.Image

FROM HEADER_TABLE HT

JOIN LINE_ITEM_TABLE LIT
ON LIT.O_ID = HT.O_ID

JOIN IMAGE_TABLE IT
ON IT.IMAGE = LIT.ITEM_ID

WHERE IT.SECTION = 'Retail'


This query returns multiple rows .But I need one unique row for each Header record.



Can anyone help me to fix .










share|improve this question














I am new to mssql .here I need to get some data using joins between three tables .



Header join Lines join Images --> Result



Header Table :



enter image description here



Line Table :



enter image description here



For each header record we can have multiple line items .



Images Table :



enter image description here



Each Image will have unique Image or multiple images .Need to get 1 image url from the list of items for the header record.



Result Set :



enter image description here



Query :



SELECT HT.O_ID,
HT.Type,
HT.Total,
IM.Image

FROM HEADER_TABLE HT

JOIN LINE_ITEM_TABLE LIT
ON LIT.O_ID = HT.O_ID

JOIN IMAGE_TABLE IT
ON IT.IMAGE = LIT.ITEM_ID

WHERE IT.SECTION = 'Retail'


This query returns multiple rows .But I need one unique row for each Header record.



Can anyone help me to fix .







sql-server sql-server-2012 join stored-procedures






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 19 at 13:28









ZhuZhu

1161




1161








  • 4





    Hi and welcome to DBA.SE! The table create + insert statements could be useful to get an answer faster. (Testing purposes)

    – Randi Vertongen
    Mar 19 at 13:32











  • I need one unique row for each Header record. If so you MUST to build a criteria which will say what record from all record pack with the same header must be returned.

    – Akina
    Mar 19 at 13:32













  • Can you check and possibly update a couple of things in your question? Your SQL statement as currently written should return no rows; the second join needs to say on IT.ITEM_ID = LIT.ITEM_ID. Also, the sample data that you've included doesn't show any duplicates on the ITEM_ID field, so it doesn't look like the query (with the corrected join) would have any duplicates either. Are there actually multiple rows per Item ID in that table?

    – Hellion
    Mar 19 at 17:34














  • 4





    Hi and welcome to DBA.SE! The table create + insert statements could be useful to get an answer faster. (Testing purposes)

    – Randi Vertongen
    Mar 19 at 13:32











  • I need one unique row for each Header record. If so you MUST to build a criteria which will say what record from all record pack with the same header must be returned.

    – Akina
    Mar 19 at 13:32













  • Can you check and possibly update a couple of things in your question? Your SQL statement as currently written should return no rows; the second join needs to say on IT.ITEM_ID = LIT.ITEM_ID. Also, the sample data that you've included doesn't show any duplicates on the ITEM_ID field, so it doesn't look like the query (with the corrected join) would have any duplicates either. Are there actually multiple rows per Item ID in that table?

    – Hellion
    Mar 19 at 17:34








4




4





Hi and welcome to DBA.SE! The table create + insert statements could be useful to get an answer faster. (Testing purposes)

– Randi Vertongen
Mar 19 at 13:32





Hi and welcome to DBA.SE! The table create + insert statements could be useful to get an answer faster. (Testing purposes)

– Randi Vertongen
Mar 19 at 13:32













I need one unique row for each Header record. If so you MUST to build a criteria which will say what record from all record pack with the same header must be returned.

– Akina
Mar 19 at 13:32







I need one unique row for each Header record. If so you MUST to build a criteria which will say what record from all record pack with the same header must be returned.

– Akina
Mar 19 at 13:32















Can you check and possibly update a couple of things in your question? Your SQL statement as currently written should return no rows; the second join needs to say on IT.ITEM_ID = LIT.ITEM_ID. Also, the sample data that you've included doesn't show any duplicates on the ITEM_ID field, so it doesn't look like the query (with the corrected join) would have any duplicates either. Are there actually multiple rows per Item ID in that table?

– Hellion
Mar 19 at 17:34





Can you check and possibly update a couple of things in your question? Your SQL statement as currently written should return no rows; the second join needs to say on IT.ITEM_ID = LIT.ITEM_ID. Also, the sample data that you've included doesn't show any duplicates on the ITEM_ID field, so it doesn't look like the query (with the corrected join) would have any duplicates either. Are there actually multiple rows per Item ID in that table?

– Hellion
Mar 19 at 17:34










2 Answers
2






active

oldest

votes


















5














You can use CROSS APPLY to SELECT just the TOP 1 image from each particular header. APPLY is similar to a function you can create "on the go" that links columns or expressions from outside to it's filters or joins.



SELECT
-- Header columns:
HT.O_ID,
HT.Type,
HT.Total,

-- Columns from the CROSS APPLY result
I.Image
FROM
HEADER_TABLE HT
CROSS APPLY (
SELECT TOP 1 -- Just retrieve 1 row (for each HT row)
IT.IMAGE
FROM
LINE_ITEM_TABLE LIT
INNER JOIN IMAGE_TABLE IT ON IT.ITEM_ID = LIT.ITEM_ID
WHERE
LIT.O_ID = HT.O_ID AND -- Link the outmost header "HT" record to it's lines "LIT"
IT.SECTION = 'Retail') AS I


You can add an ORDER BY inside the CROSS APPLY to determine which image will get selected. You can also change the CROSS APPLY to OUTER APPLY if you want header rows to display even when there is no matching record coming from the APPLY operator (the IMAGE column will be NULL).






share|improve this answer































    3















    But I need one unique row for each Header record.




    To me it is unclear if you mean one unique record per HT.O_ID or no duplicate records regarding all the four columns returned.



    If it is the latter, add the DISTINCT keyword to your query (and add the schema names).



     SELECT DISTINCT HT.O_ID,
    HT.Type,
    HT.Total,
    IT.Image

    FROM dbo.HEADER_TABLE HT
    JOIN dbo.LINE_ITEM_TABLE LIT
    ON LIT.O_ID = HT.O_ID
    JOIN dbo.IMAGE_TABLE IT
    ON IT.Item_ID = LIT.ITEM_ID
    WHERE IT.SECTION = 'Retail';


    Result



    O_ID    Type    Total   Image
    1001 Online $10 URL


    If that does not solve it



    Then you would have to group by the values in the Header_Table And decide which Image you need to keep,do concatenation on it, ....



    SELECT HT.O_ID,
    HT.Type,
    HT.Total,
    MAX(IT.Image) as MaxURL

    FROM dbo.HEADER_TABLE HT
    JOIN dbo.LINE_ITEM_TABLE LIT
    ON LIT.O_ID = HT.O_ID
    JOIN dbo.IMAGE_TABLE IT
    ON IT.Item_ID = LIT.ITEM_ID
    WHERE IT.SECTION = 'Retail'
    GROUP BY HT.O_ID,HT.Type,HT.Total;




    Test data



    CREATE TABLE dbo.HEADER_TABLE(O_ID int,Type varchar(100),Total varchar(10))
    INSERT INTO dbo.HEADER_TABLE(O_ID,Type,Total)
    VALUES (1001,'Online','$10');

    CREATE TABLE dbo.LINE_ITEM_TABLE(ID int,O_ID int,Item_ID varchar(4),Line_Total varchar(10));
    INSERT INTO dbo.LINE_ITEM_TABLE(ID,O_ID,Item_ID,Line_Total)
    VALUES (1,1001,'P001','$2'),
    (2,1001,'P002','$2'),
    (3,1001,'P003','$2'),
    (4,1001,'P004','$2'),
    (5,1001,'P005','$2');


    CREATE TABLE dbo.IMAGE_TABLE(Item_ID varchar(10),Image varchar(100),Section varchar(10))
    INSERT INTO dbo.IMAGE_TABLE
    VALUES ('P001','URL','Retail'),
    ('P002','URL','Retail'),
    ('P003','URL','Stock'),
    ('P004','URL','Retail'),
    ('P005','URL','Retail');





    share|improve this answer


























      Your Answer








      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "182"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f232523%2fget-top-1-row-value-from-third-table-while-joining-3-tables-mssql%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      5














      You can use CROSS APPLY to SELECT just the TOP 1 image from each particular header. APPLY is similar to a function you can create "on the go" that links columns or expressions from outside to it's filters or joins.



      SELECT
      -- Header columns:
      HT.O_ID,
      HT.Type,
      HT.Total,

      -- Columns from the CROSS APPLY result
      I.Image
      FROM
      HEADER_TABLE HT
      CROSS APPLY (
      SELECT TOP 1 -- Just retrieve 1 row (for each HT row)
      IT.IMAGE
      FROM
      LINE_ITEM_TABLE LIT
      INNER JOIN IMAGE_TABLE IT ON IT.ITEM_ID = LIT.ITEM_ID
      WHERE
      LIT.O_ID = HT.O_ID AND -- Link the outmost header "HT" record to it's lines "LIT"
      IT.SECTION = 'Retail') AS I


      You can add an ORDER BY inside the CROSS APPLY to determine which image will get selected. You can also change the CROSS APPLY to OUTER APPLY if you want header rows to display even when there is no matching record coming from the APPLY operator (the IMAGE column will be NULL).






      share|improve this answer




























        5














        You can use CROSS APPLY to SELECT just the TOP 1 image from each particular header. APPLY is similar to a function you can create "on the go" that links columns or expressions from outside to it's filters or joins.



        SELECT
        -- Header columns:
        HT.O_ID,
        HT.Type,
        HT.Total,

        -- Columns from the CROSS APPLY result
        I.Image
        FROM
        HEADER_TABLE HT
        CROSS APPLY (
        SELECT TOP 1 -- Just retrieve 1 row (for each HT row)
        IT.IMAGE
        FROM
        LINE_ITEM_TABLE LIT
        INNER JOIN IMAGE_TABLE IT ON IT.ITEM_ID = LIT.ITEM_ID
        WHERE
        LIT.O_ID = HT.O_ID AND -- Link the outmost header "HT" record to it's lines "LIT"
        IT.SECTION = 'Retail') AS I


        You can add an ORDER BY inside the CROSS APPLY to determine which image will get selected. You can also change the CROSS APPLY to OUTER APPLY if you want header rows to display even when there is no matching record coming from the APPLY operator (the IMAGE column will be NULL).






        share|improve this answer


























          5












          5








          5







          You can use CROSS APPLY to SELECT just the TOP 1 image from each particular header. APPLY is similar to a function you can create "on the go" that links columns or expressions from outside to it's filters or joins.



          SELECT
          -- Header columns:
          HT.O_ID,
          HT.Type,
          HT.Total,

          -- Columns from the CROSS APPLY result
          I.Image
          FROM
          HEADER_TABLE HT
          CROSS APPLY (
          SELECT TOP 1 -- Just retrieve 1 row (for each HT row)
          IT.IMAGE
          FROM
          LINE_ITEM_TABLE LIT
          INNER JOIN IMAGE_TABLE IT ON IT.ITEM_ID = LIT.ITEM_ID
          WHERE
          LIT.O_ID = HT.O_ID AND -- Link the outmost header "HT" record to it's lines "LIT"
          IT.SECTION = 'Retail') AS I


          You can add an ORDER BY inside the CROSS APPLY to determine which image will get selected. You can also change the CROSS APPLY to OUTER APPLY if you want header rows to display even when there is no matching record coming from the APPLY operator (the IMAGE column will be NULL).






          share|improve this answer













          You can use CROSS APPLY to SELECT just the TOP 1 image from each particular header. APPLY is similar to a function you can create "on the go" that links columns or expressions from outside to it's filters or joins.



          SELECT
          -- Header columns:
          HT.O_ID,
          HT.Type,
          HT.Total,

          -- Columns from the CROSS APPLY result
          I.Image
          FROM
          HEADER_TABLE HT
          CROSS APPLY (
          SELECT TOP 1 -- Just retrieve 1 row (for each HT row)
          IT.IMAGE
          FROM
          LINE_ITEM_TABLE LIT
          INNER JOIN IMAGE_TABLE IT ON IT.ITEM_ID = LIT.ITEM_ID
          WHERE
          LIT.O_ID = HT.O_ID AND -- Link the outmost header "HT" record to it's lines "LIT"
          IT.SECTION = 'Retail') AS I


          You can add an ORDER BY inside the CROSS APPLY to determine which image will get selected. You can also change the CROSS APPLY to OUTER APPLY if you want header rows to display even when there is no matching record coming from the APPLY operator (the IMAGE column will be NULL).







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 19 at 13:47









          EzLoEzLo

          2,7501621




          2,7501621

























              3















              But I need one unique row for each Header record.




              To me it is unclear if you mean one unique record per HT.O_ID or no duplicate records regarding all the four columns returned.



              If it is the latter, add the DISTINCT keyword to your query (and add the schema names).



               SELECT DISTINCT HT.O_ID,
              HT.Type,
              HT.Total,
              IT.Image

              FROM dbo.HEADER_TABLE HT
              JOIN dbo.LINE_ITEM_TABLE LIT
              ON LIT.O_ID = HT.O_ID
              JOIN dbo.IMAGE_TABLE IT
              ON IT.Item_ID = LIT.ITEM_ID
              WHERE IT.SECTION = 'Retail';


              Result



              O_ID    Type    Total   Image
              1001 Online $10 URL


              If that does not solve it



              Then you would have to group by the values in the Header_Table And decide which Image you need to keep,do concatenation on it, ....



              SELECT HT.O_ID,
              HT.Type,
              HT.Total,
              MAX(IT.Image) as MaxURL

              FROM dbo.HEADER_TABLE HT
              JOIN dbo.LINE_ITEM_TABLE LIT
              ON LIT.O_ID = HT.O_ID
              JOIN dbo.IMAGE_TABLE IT
              ON IT.Item_ID = LIT.ITEM_ID
              WHERE IT.SECTION = 'Retail'
              GROUP BY HT.O_ID,HT.Type,HT.Total;




              Test data



              CREATE TABLE dbo.HEADER_TABLE(O_ID int,Type varchar(100),Total varchar(10))
              INSERT INTO dbo.HEADER_TABLE(O_ID,Type,Total)
              VALUES (1001,'Online','$10');

              CREATE TABLE dbo.LINE_ITEM_TABLE(ID int,O_ID int,Item_ID varchar(4),Line_Total varchar(10));
              INSERT INTO dbo.LINE_ITEM_TABLE(ID,O_ID,Item_ID,Line_Total)
              VALUES (1,1001,'P001','$2'),
              (2,1001,'P002','$2'),
              (3,1001,'P003','$2'),
              (4,1001,'P004','$2'),
              (5,1001,'P005','$2');


              CREATE TABLE dbo.IMAGE_TABLE(Item_ID varchar(10),Image varchar(100),Section varchar(10))
              INSERT INTO dbo.IMAGE_TABLE
              VALUES ('P001','URL','Retail'),
              ('P002','URL','Retail'),
              ('P003','URL','Stock'),
              ('P004','URL','Retail'),
              ('P005','URL','Retail');





              share|improve this answer






























                3















                But I need one unique row for each Header record.




                To me it is unclear if you mean one unique record per HT.O_ID or no duplicate records regarding all the four columns returned.



                If it is the latter, add the DISTINCT keyword to your query (and add the schema names).



                 SELECT DISTINCT HT.O_ID,
                HT.Type,
                HT.Total,
                IT.Image

                FROM dbo.HEADER_TABLE HT
                JOIN dbo.LINE_ITEM_TABLE LIT
                ON LIT.O_ID = HT.O_ID
                JOIN dbo.IMAGE_TABLE IT
                ON IT.Item_ID = LIT.ITEM_ID
                WHERE IT.SECTION = 'Retail';


                Result



                O_ID    Type    Total   Image
                1001 Online $10 URL


                If that does not solve it



                Then you would have to group by the values in the Header_Table And decide which Image you need to keep,do concatenation on it, ....



                SELECT HT.O_ID,
                HT.Type,
                HT.Total,
                MAX(IT.Image) as MaxURL

                FROM dbo.HEADER_TABLE HT
                JOIN dbo.LINE_ITEM_TABLE LIT
                ON LIT.O_ID = HT.O_ID
                JOIN dbo.IMAGE_TABLE IT
                ON IT.Item_ID = LIT.ITEM_ID
                WHERE IT.SECTION = 'Retail'
                GROUP BY HT.O_ID,HT.Type,HT.Total;




                Test data



                CREATE TABLE dbo.HEADER_TABLE(O_ID int,Type varchar(100),Total varchar(10))
                INSERT INTO dbo.HEADER_TABLE(O_ID,Type,Total)
                VALUES (1001,'Online','$10');

                CREATE TABLE dbo.LINE_ITEM_TABLE(ID int,O_ID int,Item_ID varchar(4),Line_Total varchar(10));
                INSERT INTO dbo.LINE_ITEM_TABLE(ID,O_ID,Item_ID,Line_Total)
                VALUES (1,1001,'P001','$2'),
                (2,1001,'P002','$2'),
                (3,1001,'P003','$2'),
                (4,1001,'P004','$2'),
                (5,1001,'P005','$2');


                CREATE TABLE dbo.IMAGE_TABLE(Item_ID varchar(10),Image varchar(100),Section varchar(10))
                INSERT INTO dbo.IMAGE_TABLE
                VALUES ('P001','URL','Retail'),
                ('P002','URL','Retail'),
                ('P003','URL','Stock'),
                ('P004','URL','Retail'),
                ('P005','URL','Retail');





                share|improve this answer




























                  3












                  3








                  3








                  But I need one unique row for each Header record.




                  To me it is unclear if you mean one unique record per HT.O_ID or no duplicate records regarding all the four columns returned.



                  If it is the latter, add the DISTINCT keyword to your query (and add the schema names).



                   SELECT DISTINCT HT.O_ID,
                  HT.Type,
                  HT.Total,
                  IT.Image

                  FROM dbo.HEADER_TABLE HT
                  JOIN dbo.LINE_ITEM_TABLE LIT
                  ON LIT.O_ID = HT.O_ID
                  JOIN dbo.IMAGE_TABLE IT
                  ON IT.Item_ID = LIT.ITEM_ID
                  WHERE IT.SECTION = 'Retail';


                  Result



                  O_ID    Type    Total   Image
                  1001 Online $10 URL


                  If that does not solve it



                  Then you would have to group by the values in the Header_Table And decide which Image you need to keep,do concatenation on it, ....



                  SELECT HT.O_ID,
                  HT.Type,
                  HT.Total,
                  MAX(IT.Image) as MaxURL

                  FROM dbo.HEADER_TABLE HT
                  JOIN dbo.LINE_ITEM_TABLE LIT
                  ON LIT.O_ID = HT.O_ID
                  JOIN dbo.IMAGE_TABLE IT
                  ON IT.Item_ID = LIT.ITEM_ID
                  WHERE IT.SECTION = 'Retail'
                  GROUP BY HT.O_ID,HT.Type,HT.Total;




                  Test data



                  CREATE TABLE dbo.HEADER_TABLE(O_ID int,Type varchar(100),Total varchar(10))
                  INSERT INTO dbo.HEADER_TABLE(O_ID,Type,Total)
                  VALUES (1001,'Online','$10');

                  CREATE TABLE dbo.LINE_ITEM_TABLE(ID int,O_ID int,Item_ID varchar(4),Line_Total varchar(10));
                  INSERT INTO dbo.LINE_ITEM_TABLE(ID,O_ID,Item_ID,Line_Total)
                  VALUES (1,1001,'P001','$2'),
                  (2,1001,'P002','$2'),
                  (3,1001,'P003','$2'),
                  (4,1001,'P004','$2'),
                  (5,1001,'P005','$2');


                  CREATE TABLE dbo.IMAGE_TABLE(Item_ID varchar(10),Image varchar(100),Section varchar(10))
                  INSERT INTO dbo.IMAGE_TABLE
                  VALUES ('P001','URL','Retail'),
                  ('P002','URL','Retail'),
                  ('P003','URL','Stock'),
                  ('P004','URL','Retail'),
                  ('P005','URL','Retail');





                  share|improve this answer
















                  But I need one unique row for each Header record.




                  To me it is unclear if you mean one unique record per HT.O_ID or no duplicate records regarding all the four columns returned.



                  If it is the latter, add the DISTINCT keyword to your query (and add the schema names).



                   SELECT DISTINCT HT.O_ID,
                  HT.Type,
                  HT.Total,
                  IT.Image

                  FROM dbo.HEADER_TABLE HT
                  JOIN dbo.LINE_ITEM_TABLE LIT
                  ON LIT.O_ID = HT.O_ID
                  JOIN dbo.IMAGE_TABLE IT
                  ON IT.Item_ID = LIT.ITEM_ID
                  WHERE IT.SECTION = 'Retail';


                  Result



                  O_ID    Type    Total   Image
                  1001 Online $10 URL


                  If that does not solve it



                  Then you would have to group by the values in the Header_Table And decide which Image you need to keep,do concatenation on it, ....



                  SELECT HT.O_ID,
                  HT.Type,
                  HT.Total,
                  MAX(IT.Image) as MaxURL

                  FROM dbo.HEADER_TABLE HT
                  JOIN dbo.LINE_ITEM_TABLE LIT
                  ON LIT.O_ID = HT.O_ID
                  JOIN dbo.IMAGE_TABLE IT
                  ON IT.Item_ID = LIT.ITEM_ID
                  WHERE IT.SECTION = 'Retail'
                  GROUP BY HT.O_ID,HT.Type,HT.Total;




                  Test data



                  CREATE TABLE dbo.HEADER_TABLE(O_ID int,Type varchar(100),Total varchar(10))
                  INSERT INTO dbo.HEADER_TABLE(O_ID,Type,Total)
                  VALUES (1001,'Online','$10');

                  CREATE TABLE dbo.LINE_ITEM_TABLE(ID int,O_ID int,Item_ID varchar(4),Line_Total varchar(10));
                  INSERT INTO dbo.LINE_ITEM_TABLE(ID,O_ID,Item_ID,Line_Total)
                  VALUES (1,1001,'P001','$2'),
                  (2,1001,'P002','$2'),
                  (3,1001,'P003','$2'),
                  (4,1001,'P004','$2'),
                  (5,1001,'P005','$2');


                  CREATE TABLE dbo.IMAGE_TABLE(Item_ID varchar(10),Image varchar(100),Section varchar(10))
                  INSERT INTO dbo.IMAGE_TABLE
                  VALUES ('P001','URL','Retail'),
                  ('P002','URL','Retail'),
                  ('P003','URL','Stock'),
                  ('P004','URL','Retail'),
                  ('P005','URL','Retail');






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Mar 19 at 13:47

























                  answered Mar 19 at 13:40









                  Randi VertongenRandi Vertongen

                  4,5361924




                  4,5361924






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Database Administrators Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f232523%2fget-top-1-row-value-from-third-table-while-joining-3-tables-mssql%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

                      Fil:Tokke komm.svg

                      Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?