Skip to content

Commit 02173e3

Browse files
authored
Merge pull request #15254 from julieMSFT/20200603_eomonth
updates to code blocks
2 parents 47cd9ee + fa08924 commit 02173e3

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/t-sql/functions/encryptbykey-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ EncryptByKey ( key_GUID , { 'cleartext' | @cleartext }
9494
### A. Encrypting a string with a symmetric key
9595
The following example adds a column to the `Employee` table, and then encrypts the value of the Social Security number that is stored in column `NationalIDNumber`.
9696

97-
```
97+
```sql
9898
USE AdventureWorks2012;
9999
GO
100100

@@ -117,7 +117,7 @@ GO
117117

118118
### B. Encrypting a record together with an authentication value
119119

120-
```
120+
```sql
121121
USE AdventureWorks2012;
122122

123123
-- Create a column in which to store the encrypted data.

docs/t-sql/functions/eomonth-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The `EOMONTH` function can remote to [!INCLUDE[ssSQL11](../../includes/sssql11-m
5151

5252
### A. EOMONTH with explicit datetime type
5353

54-
```
54+
```sql
5555
DECLARE @date DATETIME = '12/1/2011';
5656
SELECT EOMONTH ( @date ) AS Result;
5757
GO
@@ -68,7 +68,7 @@ Result
6868

6969
### B. EOMONTH with string parameter and implicit conversion
7070

71-
```
71+
```sql
7272
DECLARE @date VARCHAR(255) = '12/1/2011';
7373
SELECT EOMONTH ( @date ) AS Result;
7474
GO

0 commit comments

Comments
 (0)