CAST(2.78128 AS integer) : Cast « Data Type « SQL Server / T-SQL

SQL Server / T-SQL
1. Aggregate Functions
2. Analytical Functions
3. Constraints
4. Cursor
5. Data Set
6. Data Type
7. Database
8. Date Timezone
9. Index
10. Insert Delete Update
11. Math Functions
12. Select Query
13. Sequence
14. Store Procedure Function
15. String Functions
16. Subquery
17. System
18. Table
19. Table Joins
20. Transact SQL
21. Transaction
22. Trigger
23. View
24. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL » Data Type » Cast 
CAST(2.78128 AS integer)


1> -- Cast 2.78128 as an integer:
2>
3SELECT CAST(2.78128 AS integer)
4> GO

-----------
          2

(rows affected)
1>
           
       
Related examples in the same category
1. CAST(expression AS data type(<length>))
2. CAST (original_expression AS desired_datatype)
3. CAST(2.78128 AS money)
4. CAST('11/11/72' as smalldatetime) AS '11/11/72'
5. select CAST('2002-09-30 11:35:00' AS smalldatetime) + 1 (plus)
6. select CAST('2002-09-30 11:35:00' AS smalldatetime) - 1 (minus)
7. select CAST(CAST('2002-09-30' AS datetime) - CAST('2001-12-01' AS datetime) AS int)
8. The CAST() function accepts one argument, an expression
9. Mixing Datatypes: CAST and CONVERT
10. Cast date type to char
11. CAST can still do date conversion
12. Cast date to different format
13. Cast number to varchar and use the regular expressions
14. Conversion with CONVERT function for computated value with numbers in list
15. Cast int to decimal
16. Convert varchar to number
17. CONVERT() does the same thing as the CAST() function
18. CAST(ID AS VarChar(5))
19. CAST('123.4' AS Decimal)
20. Arithmetic overflow error converting numeric to data type varchar.
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.