The DECLARE statement has a pretty simple syntax: : Declare « Transact SQL « SQL Server / T-SQL Tutorial

SQL Server / T-SQL Tutorial
1. Query
2. Insert Delete Update
3. Table
4. Table Join
5. Data Types
6. Set Operations
7. Constraints
8. Subquery
9. Aggregate Functions
10. Date Functions
11. Math Functions
12. String Functions
13. Data Convert Functions
14. Analytical Functions
15. Sequence Indentity
16. View
17. Index
18. Cursor
19. Database
20. Transact SQL
21. Procedure Function
22. Trigger
23. Transaction
24. XML
25. System Functions
26. System Settings
27. System Tables Views
28. User Role
29. CLR
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL Tutorial » Transact SQL » Declare 
20. 1. 1. The DECLARE statement has a pretty simple syntax:
5> --DECLARE @<variable name> <variable type>[,
6> --        @<variable name> <variable type>[,
7> --        @<variable name> <variable type>]]
8> --
9> --Setting Variables Using SET
10>
11>
12CREATE TABLE OrderDetails (
13>     OrderID int NOT NULL ,
14>     ProductID int NOT NULL ,
15>     UnitPrice money NOT NULL DEFAULT (0),
16>     Quantity smallint NOT NULL DEFAULT (1),
17>     Discount real NOT NULL DEFAULT (0)
18)
19> GO
1INSERT OrderDetails VALUES(10248,11,14,12,0)
2INSERT OrderDetails VALUES(10248,42,9.8,10,0)
3INSERT OrderDetails VALUES(10248,72,34.8,5,0)
4INSERT OrderDetails VALUES(10249,14,18.6,9,0)
5INSERT OrderDetails VALUES(10249,51,42.4,40,0)
6INSERT OrderDetails VALUES(10250,41,7.7,10,0)
7INSERT OrderDetails VALUES(10250,51,42.4,35,0.15)
8INSERT OrderDetails VALUES(10250,65,16.8,15,0.15)
9INSERT OrderDetails VALUES(10251,22,16.8,6,0.05)
10INSERT OrderDetails VALUES(10251,57,15.6,15,0.05)
11> go

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)
1>
2>    DECLARE @TotalCost money
3>
4>    SET @TotalCost = 10
5>    SET @TotalCost = @TotalCost * 1.1
6>
7>
8>    DECLARE @Test money
9>
10>    select @Test = MAX(UnitPriceFROM OrderDetails
11>    SELECT @Test
12> GO

---------------------
              42.4000

(rows affected)
1>
2> drop table OrderDetails;
3> GO
20. 1. Declare
20. 1. 1. The DECLARE statement has a pretty simple syntax:
20. 1. 2. It is possible to define several variables in a single Declare statement.
20. 1. 3. The names of variables must begin with @
20. 1. 4. Simple SELECT query written using variables for field names.
20. 1. 5. Declare a table type variable and query it
20. 1. 6. DECLARE @Out Int (get value out of a procedure)
20. 1. 7. DECLARE @Out Int
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.