Skip to content

Commit 031bdd1

Browse files
authored
Merge pull request #323 from JaredLGillespie/patch-1
Fixing SQL error in object-id-transact-sql.md
2 parents 6f8e33b + 4d14b3a commit 031bdd1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/t-sql/functions/object-id-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ GO
130130
The following example returns the object ID for the `FactFinance` table in the [!INCLUDE[ssawPDW](../../includes/ssawpdw-md.md)] database.
131131

132132
```
133-
SELECT OBJECT_ID(AdventureWorksPDW2012.dbo.FactFinance') AS 'Object ID';
133+
SELECT OBJECT_ID('AdventureWorksPDW2012.dbo.FactFinance') AS 'Object ID';
134134
```
135135

136136
## See Also

0 commit comments

Comments
 (0)