Skip to content

Commit 6bb0fc9

Browse files
20210414 1014
1 parent 5553a5f commit 6bb0fc9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/t-sql/functions/logical-functions-greatest-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,15 +192,15 @@ GO
192192

193193
DECLARE @PriceX smallmoney = 19.99;
194194

195-
SELECT GREATEST(listprice, 0, @PriceX) as Price
195+
SELECT GREATEST(listprice, 0, @PriceX) as GreatestPrice
196196
FROM dbo.products;
197197
GO
198198
```
199199

200200
[!INCLUDE[ssResult](../../includes/ssresult-md.md)]
201201

202202
```
203-
Price
203+
GreatestPrice
204204
-------------
205205
19.9900
206206
49.9900

0 commit comments

Comments
 (0)