SELECT ROUND(CORR(ProductStandardPrice, OrderedQuantity), 3) AS Price_Quantity_Correlation
FROM Product_T P, Orderline_T L
WHERE P.ProductID = L.ProductID;
productStandardPrice
とOrderedquantity
の後に3が何であるのだろうか?SQL Corrコマンド/オーダーBy
3は何をしますか?私はインターネット上の情報を見つけることができません。
また、Orderby#を実行すると3番目の列で注文するのか、それともどのように注文しますか?