A cursor created in SQL server. : Declare Cursor « Cursor « 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 » Cursor » Declare Cursor 
18. 2. 3. A cursor created in SQL server.
4CREATE TABLE Employees(
5> empid   int         NOT NULL,
6> empname varchar(10NOT NULL,
7> deptno  int         NULL ,
8> jobid   int         ,
9> salary decimal(7,2NOT NULL
10)
11> GO
1>
2INSERT INTO Employees VALUES(1'Leo', 400303456.00)
3INSERT INTO Employees VALUES(2'Ros', 200204325.00)
4INSERT INTO Employees VALUES(3'Chris', 100108952.00)
5INSERT INTO Employees VALUES(4'Rob', 400301234.00)
6INSERT INTO Employees VALUES(5'Linda', 400304567.00)
7INSERT INTO Employees VALUES(6'Lisa', NULL, 308765.00)
8> GO

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)
1>     DECLARE
2>          @empname VARCHAR(40),
3>          @salary MONEY,
4>          @empid integer
5>     DECLARE getemp_curs CURSOR
6>         FOR
7>            SELECT empid, empname, salary FROM employees WHERE empid = 1
8>     OPEN getemp_curs
9>     FETCH NEXT FROM getemp_curs into @empid, @empname, @salary
10>     WHILE @@FETCH_STATUS = BEGIN
11>          UPDATE employees SET salary = @salary WHERE empid = @empid
12>     FETCH NEXT FROM getemp_curs into @empid, @empname, @salary
13>     END
14>     CLOSE getemp_curs
15>     DEALLOCATE getemp_curs
16>     GO

(rows affected)
1>
2> drop table Employees;
3> GO
18. 2. Declare Cursor
18. 2. 1. The syntax of the DECLARE CURSOR statement
18. 2. 2. A DECLARE CURSOR statement that declares a dynamic local cursor
18. 2. 3. A cursor created in SQL server.
18. 2. 4. INSENSITIVE Cursor
18. 2. 5. Cursor on a Single-Column Key
18. 2. 6. Four cursors
18. 2. 7. Declare a cursor variable to hold the cursor output variable
18. 2. 8. Local scroll cursor
18. 2. 9. DECLARE CURSOR FAST_FORWARD FOR
18. 2. 10. DECLARE cursor LOCAL
18. 2. 11. DECLARE CURSOR GLOBAL FOR
18. 2. 12. Static cursor
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.