1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00
Files
sql-server-samples/samples/features/r-services/predictive-analytics/scripts/Exec PredictTip.sql
2017-02-02 13:46:51 -08:00

15 lines
486 B
Transact-SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

USE [taxidata]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[PredictTip]
@passenger_count = 1,
@trip_distance = 2.5,
@trip_time_in_secs = 631,
@direct_distance = 2
SELECT 'Return Value' = @return_value
GO