IT科技类资讯

T-SQL查询进阶之深入理解子查询

时间:2010-12-5 17:23:32  作者:数据库   来源:系统运维  查看:  评论:0
内容摘要:复制SELECTP.ProductID,P.Name,P.ProductNumber,M.Name ASProductModelName FROMPro

T-SQL查询进阶之深入理解子查询
复制SELECT P.ProductID,查询 P.Name, P.ProductNumber, M.Name   AS ProductModelName   FROM Production.Product AS P   INNER JOIN   (   SELECT Name, ProductModelID   FROM Production.ProductModel)   AS M   ON P.ProductModelID = M.ProductModelID  1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.17.
copyright © 2025 powered by 编程之道  滇ICP备2023006006号-34sitemap