Skip to content

Commit 9e0cd1d

Browse files
authored
Update sp-help-spatial-geography-histogram-transact-sql.md
Adding missing quotes around table and column names in the example. (They are not needed for the column name, but since the table name is two-part notations, quotes are needed.)
1 parent 4893a0c commit 9e0cd1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/relational-databases/system-stored-procedures/sp-help-spatial-geography-histogram-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ The following example calls `sp_help_spatial_geography_histogram` on the `Person
8282

8383
```sql
8484
EXECUTE sp_help_spatial_geography_histogram
85-
@tabname = Person.Address,
86-
@colname = SpatialLocation,
85+
@tabname = N'Person.Address',
86+
@colname = N'SpatialLocation',
8787
@resolution = 64,
8888
@sample = 30;
8989
```

0 commit comments

Comments
 (0)