从两个不同的表中选择具有匹配ID的查询。

huangapple go评论94阅读模式
英文:

select query from two different table with matching id

问题

你的要求是将以下英文文本翻译成中文:

"i have product table as

id name
1 A
2 B

for each product, i have separate product type table, for Product_A_Type, i have type table as below

id type
1 abc
2 dcf

like wise i have Product_B_Type table

id type
1 123
2 456

and having stock table as

id product_id product_type_id
1 1 1
2 1 2
3 2 1
4 2 2

i am doing filter based on product and type combination for eg:-

in my select query, i will search with product as "A" and type as %ab%, in this case i need to get results based on product type A only, if i search with product "B" and type as %12% then the query should return results for product "B" and it should ignore product A. i tried with below query, but it returns empty row..

select
*
from
daily_stock
where
(
product_id in (
select
id
from
products p
where
lower(p.name) like lower('%lubr%')
)
and product_type_id in (
select
id
from
lubricant_type l
where
lower(l.type) like lower('%%')
)
and product_type_id in (
select
id
from
lubricant_type l
where
lower(l.name) like lower('%%')
)
)
and (
product_id in (
select
id
from
products p
where
lower(p.name) like lower('%lubr%')
)
and product_type_id in (
select
id
from
fuel_type f
where
lower(f.type) like lower('%%')
)
and product_type_id in (
select
id
from
fuel_type f
where
lower(f.name) like lower('%%')
)
)"

以下是翻译后的文本:

我有一个产品表如下:

id 名称
1 A
2 B

对于每个产品,我都有单独的产品类型表,例如Product_A_Type,我有以下类型表:

id 类型
1 abc
2 dcf

同样,我也有Product_B_Type表:

id 类型
1 123
2 456

还有一个库存表如下:

id 产品ID 产品类型ID
1 1 1
2 1 2
3 2 1
4 2 2

我正在根据产品和类型的组合进行筛选,例如:

在我的选择查询中,我将搜索产品为"A",类型为%ab%,在这种情况下,我只需要基于产品类型A获取结果,如果我搜索产品为"B",类型为%12%,则查询应返回产品为"B"的结果,并忽略产品A。我尝试了以下查询,但它返回了空行。

  1. select
  2. *
  3. from
  4. daily_stock
  5. where
  6. (
  7. product_id in (
  8. select
  9. id
  10. from
  11. products p
  12. where
  13. lower(p.name) like lower('%lubr%')
  14. )
  15. and product_type_id in (
  16. select
  17. id
  18. from
  19. lubricant_type l
  20. where
  21. lower(l.type) like lower('%%')
  22. )
  23. and product_type_id in (
  24. select
  25. id
  26. from
  27. lubricant_type l
  28. where
  29. lower(l.name) like lower('%%')
  30. )
  31. )
  32. and (
  33. product_id in (
  34. select
  35. id
  36. from
  37. products p
  38. where
  39. lower(p.name) like lower('%lubr%')
  40. )
  41. and product_type_id in (
  42. select
  43. id
  44. from
  45. fuel_type f
  46. where
  47. lower(f.type) like lower('%%')
  48. )
  49. and product_type_id in (
  50. select
  51. id
  52. from
  53. fuel_type f
  54. where
  55. lower(f.name) like lower('%%')
  56. )
  57. )

希望这有助于您理解。如果您有任何其他问题,请随时提出。

英文:

i have product table as

id name
1 A
2 B

for each product, i have separate product type table, for Product_A_Type, i have type table as below

id type
1 abc
2 dcf

like wise i have Product_B_Type table

id type
1 123
2 456

and having stock table as

id product_id product_type_id
1 1 1
2 1 2
3 2 1
4 2 2

i am doing filter based on product and type combination for eg:-

in my select query, i will search with product as "A" and type as %ab%, in this case i need to get results based on product type A only, if i search with product "B" and type as %12% then the query should return results for product "B" and it should ignore product A. i tried with below query, but it returns empty row..

  1. select
  2. *
  3. from
  4. daily_stock
  5. where
  6. (
  7. product_id in (
  8. select
  9. id
  10. from
  11. products p
  12. where
  13. lower(p.name) like lower('%lubr%')
  14. )
  15. and product_type_id in (
  16. select
  17. id
  18. from
  19. lubricant_type l
  20. where
  21. lower(l.type) like lower('%%')
  22. )
  23. and product_type_id in (
  24. select
  25. id
  26. from
  27. lubricant_type l
  28. where
  29. lower(l.name) like lower('%%')
  30. )
  31. )
  32. and (
  33. product_id in (
  34. select
  35. id
  36. from
  37. products p
  38. where
  39. lower(p.name) like lower('%lubr%')
  40. )
  41. and product_type_id in (
  42. select
  43. id
  44. from
  45. fuel_type f
  46. where
  47. lower(f.type) like lower('%%')
  48. )
  49. and product_type_id in (
  50. select
  51. id
  52. from
  53. fuel_type f
  54. where
  55. lower(f.name) like lower('%%')
  56. )
  57. )

edit
if i search for product "A" and type as "%ab%"

id product_id product_type_id
1 1 1

for product "B" and type as "%12%", then result should be as..

id product_id product_type_id
1 2 1

答案1

得分: 1

以下是您要翻译的内容:

  1. 请尝试此查询:
  2. select ds.id, ds.product_id, ds.product_type_id
  3. from daily_stock ds
  4. inner join product p on p.id = ds.product_id
  5. inner join Product_A_Type pa on pa.id = ds.product_type_id
  6. inner join Product_B_Type pb on pb.id = ds.product_type_id
  7. where p.name = 'A' and ( pa.type like '%ab%' or pb.type like '%ab%' )

示例在此处

英文:

Can you try this query :

  1. select ds.id, ds.product_id, ds.product_type_id
  2. from daily_stock ds
  3. inner join product p on p.id = ds.product_id
  4. inner join Product_A_Type pa on pa.id = ds.product_type_id
  5. inner join Product_B_Type pb on pb.id = ds.product_type_id
  6. where p.name = 'A' and ( pa.type like '%ab%' or pb.type like '%ab%' )

Demo here

huangapple
  • 本文由 发表于 2023年5月22日 16:33:20
  • 转载请务必保留本文链接:https://go.coder-hub.com/76304352.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定