Skip to content

Commit 824cb32

Browse files
committed
Adding descriptions to top page view T-SQL
1 parent d6fc557 commit 824cb32

25 files changed

Lines changed: 34 additions & 34 deletions

docs/t-sql/data-types/data-types-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Data types (Transact-SQL) | Microsoft Docs"
3-
ms.custom: ""
3+
ms.custom: "This article provides a summary of the different data types available in SQL Server."
44
ms.date: "09/13/2017"
55
ms.prod: sql
66
ms.prod_service: "database-engine, sql-database, sql-data-warehouse, pdw"

docs/t-sql/data-types/decimal-and-numeric-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "decimal and numeric (Transact-SQL) | Microsoft Docs"
3-
ms.custom: ""
3+
ms.description: "Transact-SQL reference for the decimal and numeric data types. Decimal and numeric are synonyms for numeric data types that have a fixed precision and scale."
44
ms.date: "09/10/2019"
55
ms.prod: sql
66
ms.prod_service: "database-engine, sql-database, sql-data-warehouse, pdw"

docs/t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "int, bigint, smallint, and tinyint (Transact-SQL) | Microsoft Docs"
3-
ms.custom: ""
3+
ms.description: "Transact-SQL reference for int, bigint, smallint, and tinyint data types. These data types are used to represent integer data."
44
ms.date: 09/08/2017
55
ms.prod: sql
66
ms.prod_service: "database-engine, sql-database, sql-data-warehouse, pdw"

docs/t-sql/functions/cast-and-convert-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "CAST and CONVERT (Transact-SQL) | Microsoft Docs"
3-
ms.custom: ""
3+
ms.description: "Reference for the CAST and CONVERT Transact-SQL functions. These functions convert expressions from one data type to another."
44
ms.date: "08/23/2019"
55
ms.prod: sql
66
ms.prod_service: "database-engine, sql-database, sql-data-warehouse, pdw"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "CHARINDEX (Transact-SQL) | Microsoft Docs"
3-
ms.custom: ""
3+
ms.description: "Transact-SQL reference for the CHARINDEX function."
44
ms.date: "07/24/2017"
55
ms.prod: sql
66
ms.prod_service: "database-engine, sql-database, sql-data-warehouse, pdw"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "DATEADD (Transact-SQL) | Microsoft Docs"
3-
ms.custom: ""
3+
ms.description: "Transact-SQL reference for the DATEADD function. This function returns a date that has been modified by the specified date part."
44
ms.date: "07/29/2017"
55
ms.prod: sql
66
ms.prod_service: "database-engine, sql-database, sql-data-warehouse, pdw"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "DATEDIFF (Transact-SQL) | Microsoft Docs"
3-
ms.custom: ""
3+
ms.description: "Transact-SQL reference for the DATEDIFF function. Returns the numerical difference between a start and end date based on datepart."
44
ms.date: "07/18/2019"
55
ms.prod: sql
66
ms.prod_service: "database-engine, sql-database, sql-data-warehouse, pdw"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "DATEPART (Transact-SQL) | Microsoft Docs"
3-
ms.custom: ""
3+
ms.description: "Transact-SQL reference for the DATEPART function. This function returns an integer corresponding to the datepart of a specified date."
44
ms.date: "07/29/2017"
55
ms.prod: sql
66
ms.prod_service: "database-engine, sql-database, sql-data-warehouse, pdw"

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "FORMAT (Transact-SQL) | Microsoft Docs"
3-
ms.custom: ""
3+
ms.description: "Transact-SQL reference for the FORMAT function."
44
ms.date: "08/15/2017"
55
ms.prod: sql
66
ms.prod_service: "database-engine, sql-database"
@@ -184,11 +184,11 @@ ORDER BY CurrencyRateID;
184184
```
185185
CurrencyRateID EndOfDayRate Numeric Format General Format Currency Format
186186
-------------- ------------ -------------- -------------- ---------------
187-
1 1.0002 1,00 1,0002 1,00
188-
2 1.55 1,55 1,5500 1,55
189-
3 1.9419 1,94 1,9419 1,94
190-
4 1.4683 1,47 1,4683 1,47
191-
5 8.2784 8,28 8,2784 8,28
187+
1 1.0002 1,00 1,0002 1,00 €
188+
2 1.55 1,55 1,5500 1,55 €
189+
3 1.9419 1,94 1,9419 1,94 €
190+
4 1.4683 1,47 1,4683 1,47 €
191+
5 8.2784 8,28 8,2784 8,28 €
192192
193193
(5 row(s) affected)
194194
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "GETDATE (Transact-SQL) | Microsoft Docs"
3-
ms.custom: ""
3+
ms.description: "Transact-SQL reference for the GETDATE function, which returns the current database system time as a datetime value."
44
ms.date: "09/07/2018"
55
ms.prod: sql
66
ms.prod_service: "database-engine, sql-database, sql-data-warehouse, pdw"

0 commit comments

Comments
 (0)