mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
11 lines
306 B
Transact-SQL
11 lines
306 B
Transact-SQL
USE [taxidata]
|
||
GO
|
||
|
||
DECLARE @return_value int
|
||
|
||
EXEC @return_value = [dbo].[TrainTipPredictionModel]
|
||
|
||
SELECT 'Return Value' = @return_value
|
||
|
||
GO
|