Skip to content

Commit f2cc287

Browse files
committed
Added blank line in code block
1 parent 08130ff commit f2cc287

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

docs/t-sql/queries/predict-transact-sql.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ FROM PREDICT(MODEL = @model,
176176

177177
```sql
178178
DECLARE @model varbinary(max) = (SELECT test_model FROM scoring_model WHERE model_id = 1);
179+
179180
SELECT d.*, p.Score
180181
FROM PREDICT(MODEL = @model,
181182
DATA = dbo.mytable AS d) WITH (Score float) AS p;

0 commit comments

Comments
 (0)