Spelling single digits. : Utility Procedure « Procedure Function « 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 » Procedure Function » Utility Procedure 
21. 11. 2. Spelling single digits.
4>
5>     CREATE PROC pr_single @chrDigit CHAR(1), @chrSd VARCHAR(6OUTPUT
6>     AS
7>     IF @chrDigit = '1'
8>         BEGIN
9>              SELECT @chrSd = "One"
10>         RETURN
11>         END
12>     ELSE
13>     IF @chrDigit = '2'
14>         BEGIN
15>              SELECT @chrSd = "Two"
16>          RETURN
17>         END
18>     ELSE
19>     IF @chrDigit = '3'
20>         BEGIN
21>              SELECT @chrSd = "Three"
22>          RETURN
23>         END
24>     ELSE
25>     IF @chrDigit = '4'
26>         BEGIN
27>              SELECT @chrSd = "Four"
28>          RETURN
29>         END
30>     ELSE
31>     IF @chrDigit = '5'
32>         BEGIN
33>              SELECT @chrSd = "Five"
34>          RETURN
35>         END
36>     ELSE
37>     IF @chrDigit = '6'
38>         BEGIN
39>              SELECT @chrSd = "Six"
40>          RETURN
41>         END
42>     ELSE
43>     IF @chrDigit = '7'
44>         BEGIN
45>              SELECT @chrSd = "Seven"
46>          RETURN
47>         END
48>     ELSE
49>     IF @chrDigit = '8'
50>         BEGIN
51>              SELECT @chrSd = "Eight"
52>          RETURN
53>         END
54>     ELSE
55>     IF @chrDigit = '9'
56>         BEGIN
57>              SELECT @chrSd = "Nine"
58>          RETURN
59>         END
60>     ELSE
61>          SELECT @chrSd = ""
62>     GO
1>
2>     DROP PROC pr_single
3>     GO
1>
2>
3>
21. 11. Utility Procedure
21. 11. 1. Create procedure to drop foreign key
21. 11. 2. Spelling single digits.
21. 11. 3. uses system tables to determine the datatype of a field.
21. 11. 4. A stored procedure that tests for a valid foreign key
21. 11. 5. A script that creates a stored procedure that copies a table
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.