varchar type parameter : varchar « 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 » varchar 
varchar type parameter

 


7CREATE TABLE titles(
8>    title_id       varchar(20),
9>    title          varchar(80)       NOT NULL,
10>    type           char(12)          NOT NULL,
11>    pub_id         char(4)               NULL,
12>    price          money                 NULL,
13>    advance        money                 NULL,
14>    royalty        int                   NULL,
15>    ytd_sales      int                   NULL,
16>    notes          varchar(200)          NULL,
17>    pubdate        datetime          NOT NULL
18)
19> GO
1>
2insert titles values ('1''Secrets',   'popular_comp', '1389', $20.00, $8000.00, 104095,'Note 1','06/12/94')
3insert titles values ('2''The',       'business',     '1389', $19.99, $5000.00, 104095,'Note 2','06/12/91')
4insert titles values ('3''Emotional', 'psychology',   '0736', $7.99,  $4000.00, 103336,'Note 3','06/12/91')
5insert titles values ('4''Prolonged', 'psychology',   '0736', $19.99, $2000.00, 104072,'Note 4','06/12/91')
6insert titles values ('5''With',      'business',     '1389', $11.95, $5000.00, 103876,'Note 5','06/09/91')
7insert titles values ('6''Valley',    'mod_cook',     '0877', $19.99, $0.00,    122032,'Note 6','06/09/91')
8insert titles values ('7''Any?',      'trad_cook',    '0877', $14.99, $8000.00, 104095,'Note 7','06/12/91')
9insert titles values ('8''Fifty',     'trad_cook',    '0877', $11.95, $4000.00, 141509,'Note 8','06/12/91')
10> GO

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)
1>
2CREATE TABLE sales(
3>    stor_id        char(4)           NOT NULL,
4>    ord_num        varchar(20)       NOT NULL,
5>    ord_date       datetime          NOT NULL,
6>    qty            smallint          NOT NULL,
7>    payterms       varchar(12)       NOT NULL,
8>    title_id       varchar(80)
9)
10> GO
1insert sales values('1''QA7442.3', '09/03/94', 75'ON Billing','1')
2insert sales values('2''D4482',    '09/04/94', 10'Ne60',    '1')
3insert sales values('3''N914008',  '09/04/94', 20'Ne30',    '2')
4insert sales values('4''N914014',  '09/04/94', 25'Ne30',    '3')
5insert sales values('5''423LL922', '09/04/94', 15'ON Billing','3')
6insert sales values('6''423LL930', '09/04/94', 10'ON Billing','2')
7> GO

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)
1>
2>
3> Create FUNCTION SalesByStore(@storid varchar(30))
4> RETURNS TABLE
5> AS
6> RETURN (SELECT title, qty
7>         FROM dbo.sales s, dbo.titles t
8>         WHERE s.stor_id = @storid AND t.title_id = s.title_id)
9> GO
1>
2>
3> ALTER FUNCTION SalesByStore(@storid varchar(30))
4> RETURNS TABLE
5> WITH SCHEMABINDING
6> AS
7> RETURN (SELECT title, qty
8>         FROM dbo.sales s, dbo.titles t
9>         WHERE s.stor_id = @storid AND t.title_id = s.title_id)
10> GO
1>
2>
3SELECT obj_name = SUBSTRING(OBJECT_NAME(d.id)120),
4>        dep_obj  = SUBSTRING(OBJECT_NAME(d.depid)120),
5>        col_name = SUBSTRING(name, 115),
6>        IsSchemaBound = CASE deptype
7>            WHEN THEN 'Schema Bound'
8>            ELSE 'Free'
9>        END
10FROM
11>     sysdepends d
12>     JOIN syscolumns c ON d.depid = c.id
13>     AND d.depnumber = c.colid
14WHERE object_name(d.idLIKE 'SalesByStore%'
15> GO
obj_name             dep_obj              col_name        IsSchemaBound
-------------------- -------------------- --------------- -------------
SalesByStore         titles               title_id        Schema Bound
SalesByStore         titles               title           Schema Bound
SalesByStore         sales                stor_id         Schema Bound
SalesByStore         sales                qty             Schema Bound
SalesByStore         sales                title_id        Schema Bound

(rows affected)
1>
2>
3> EXEC sp_helptext SalesByStore
4> GO
Text

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------






CREATE FUNCTION SalesByStore(@storid varchar(30))


RETURNS TABLE


WITH SCHEMABINDING


AS


RETURN (SELECT title, qty


        FROM dbo.sales s, dbo.titles t


        WHERE s.stor_id = @storid AND t.title_id = s.title_id)

1>
2>
3> drop FUNCTION SalesByStore;
4> GO
1> drop table sales;
2> drop table titles;
3> GO

 
Related examples in the same category
1. Specifying Variable-Width Data Types for Table Columns
2. Declare variable in varchar type
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.