科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道用SQL Server处理物料清单规则

用SQL Server处理物料清单规则

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

SQL Server技术在BOM问题上有一个变化;它能告诉你根据手边现有的原料开出什么样的食谱。这个技术广泛地应用于各种应用软件上,所有的这些都是用BOM规则描述的。

作者:builder.com.cn 2007年4月26日

关键字: SQL Server

  • 评论
  • 分享微博
  • 分享邮件

在本页阅读全文(共4页)

/* count the ingredients required */
SELECT
      [Recipe Ingredients].RecipeID,
      Count([Recipe Ingredients].IngredientID) AS Required
FROM
      [Recipe Ingredients]
GROUP BY
      [Recipe Ingredients].RecipeID;

/* count the ingredients available */
SELECT
      [Recipe Ingredients].RecipeID,
      Count(Pantry.IngredientID) AS Available
FROM Pantry
      RIGHT JOIN [Recipe Ingredients]
      ON Pantry.IngredientID = [Recipe Ingredients].IngredientID
GROUP BY
      [Recipe Ingredients].RecipeID;
    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章