Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6554867
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:45:04+00:00 2026-05-25T12:45:04+00:00

I have Product Table & priceDeatil table. Prouct Table ProductCode BusinessUnit 10001 ORB 10002

  • 0

I have Product Table & priceDeatil table.

 Prouct Table
 ProductCode  BusinessUnit 
 10001        ORB          
 10002        ORB          

 StockRecord Table
 ProductCode    Name       StcokQuantity 
  10001         SUnSilk    1000
  10002         Pen         500

priceDeatil 
ProductCode  BusinessUnit  price   DateFrom     DateTo
10001         ORB          12.00   12-08-2011   31-09-2015
10001         ORB          21.00   01.08-2011   15-09-2011
10002         ORB          54.00   21.08-2011   15-09-2011

I want to get the product table’s record,StockRecords’s table & price with that product latest price

Here productCode 10001 contain 2 records when I run query it return 2 reords.I want to get only one records.

 SELECT     WMProduct.BusinessUnit, WMProduct.ProductCode, StockRecord.Name, WMPriceDetail.Price
 FROM       WMProduct INNER JOIN StockRecord
            ON WMProduct.ProductCode = StockRecord.ProductCode
           INNER JOIN WMPriceDetail
            WMPriceDetail ON WMProduct.BusinessUnit = WMPriceDetail.BusinessUnit AND WMPriceDetail.ProductCode = WMProduct.ProductCode

 WHERE     (WMPriceDetail.DateFrom < GETDATE()) AND (WMPriceDetail.DateTo > GETDATE() OR
            WMPriceDetail.DateTo = NULL)

This query returns

   BusinessUnit ProductCode     Name   Price
     ORB         10001         SunSilk    12.00
     ORB         10001         SunSilk    21.00

But I need only one records….
BusinessUnit ProductCode Name Price
ORB 10001 SunSilk 21.00
ORB 10002 Pen 54.00

From that query i can’t put TOP 1 because there are more table combine.. join

If the price is not define in the price detail table, that records should not show into the list.

Please help me….

Thanks in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T12:45:05+00:00Added an answer on May 25, 2026 at 12:45 pm

    Try this friend:

     select p.businessunit, p.productcode, pr.price from
     WMProduct p ,WMStockRecord s, WMPriceDetail pr
     where p.productcode = s.productcode and
        s.productcode = pr.productcode and p.productcode=pr.productcode and
        pr.datefrom = (select max(datefrom) from WMPriceDetail where productcode = p.productcode  and
      (
        ( DateFrom < 'Sep 06 2011') AND (DateTo > 'Sep 06 2011' OR DateTo IS NULL) 
      ) 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 2 tables product and history product table: id name type price location
Hi I have table called Sold Products which stores buying information for product &
I have a product table which simplifies to this: create table product(id int primary
Let's say we have a Product table, and Order table and a (junction table)
Which is your preference? Let's say we have a generic Product table that has
I have a table [Product] with a column [CreateTime] datetime null, and is has
I have the following five tables: ISP Product Connection AddOn AddOn/Product (pivot table for
I have a Table called Product and I have the Table StorageHistory . Now,
I have a table of product information with many bit columns. This table can
I have two tables namely 'categories' & 'products' as follows: categories id | name

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.