Define function to get last name : Create Function « Store Procedure Function « 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 » Store Procedure Function » Create Function 
Define function to get last name



14>
15CREATE FUNCTION fnName (@Name VarChar(100))
16>   RETURNS VarChar(100)
17> AS
18>   BEGIN
19>      DECLARE @CommaPosition Int, @LastName varchar(100)
20>      SET @CommaPosition = 6
21>      SET @LastName = SUBSTRING(@Name, 1, @CommaPosition)
22>      RETURN @LastName
23>   END
24> GO
Msg 2714, Level 16, State 3, Server JAVA2S\SQLEXPRESS, Procedure fnName, Line 22
There is already an object named 'fnName' in the database.
1>
2SELECT dbo.fnName('Washington, George')
3> GO

------------------------------------------------------------------------------------------
Washin

(rows affected)
1>
2> drop function fnName
3> GO
           
       
Related examples in the same category
1. Multi-Statement Table-Valued Functions
2. Inline Table-Valued Functions
3. Function Returning a Scalar Value
4. Define user function and use it in select statement
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.