Skip to content

Commit d60487a

Browse files
Merge pull request #36646 from VanMSFT/vanmsft-vector-fix-duplicate-examples
Fix duplicate object names in vector data type code examples
2 parents b458970 + 1406610 commit d60487a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

docs/t-sql/data-types/vector-data-type.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: The vector data type stores vector data optimized for machine learn
44
author: WilliamDAssafMSFT
55
ms.author: wiassaf
66
ms.reviewer: damauri, pookam, randolphwest
7-
ms.date: 11/18/2025
7+
ms.date: 02/18/2026
88
ms.service: sql
99
ms.subservice: t-sql
1010
ms.topic: quickstart
@@ -88,7 +88,7 @@ CREATE TABLE dbo.vectors
8888
v VECTOR(3) NOT NULL -- Uses default base type (`float32`)
8989
);
9090

91-
CREATE TABLE dbo.vectors
91+
CREATE TABLE dbo.vectors_fp16
9292
(
9393
id INT PRIMARY KEY,
9494
v VECTOR(3, float16) -- Uses float16 for reduced storage and precision
@@ -112,6 +112,7 @@ The **vector** type can be used with variables:
112112
```sql
113113
DECLARE @v AS VECTOR(3) = '[0.1, 2, 30]';
114114
SELECT @v;
115+
GO
115116
DECLARE @v AS VECTOR(3, float16) = '[0.1, 2, 30]';
116117
SELECT @v;
117118
```

0 commit comments

Comments
 (0)