Ctrl + S キーを押してクエリを保存し、クエリにProduct Subtotals という名前を付けます。 詳細については、「Totals 行を使用してデータシートに列の合計を表示する」を参照してください。 ページの先頭へ 集計データまたは集計データを表示する ...
functiongetTotalWithTax(subTotal){returnsubTotal *1.25; } 次のクエリは UDFgetTotalWithTaxを複数回実行します。 NoSQL SELECTVALUE{ subtotal: p.price, total: udf.getTotalWithTax(p.price) }FROMproducts pWHEREudf.getTotalWithTax(p.price) <22.25 ...
DECLARE@territoryidINT;DECLARE@cityNVARCHAR(32);SET@territoryid =3;SET@city = N'Seattle';SELECTJSON_VALUE(Info,'$.Customer.Name')ASCustomer,Status,SUM(SubTotal)ASTotalFROMSales.SalesOrder_jsonWHERETerritoryID = @territoryidANDJSON_VALUE(Info,'$.ShippingInfo.City')...