|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Adding More Test Data for Query Statements
By: FYIcenter.com
(Continued from previous topic...)
How To Add More Data to the Testing Table?
If you want to continue with other tutorial exercises in this FAQ collection,
you need to add more data to the testing table. Follow the script below
to add a new column and more rows:
ALTER TABLE fyi_links ADD tag VARCHAR(8)
GO
UPDATE fyi_links SET tag = 'DEV' WHERE id = 101
GO
UPDATE fyi_links SET tag = 'DBA' WHERE id = 102
GO
UPDATE fyi_links SET tag = 'SQA' WHERE id = 103
GO
INSERT INTO fyi_links VALUES (104,
'www.mysql.com', '', '0', '2006-01-01', 'DBA')
GO
INSERT INTO fyi_links VALUES (105,
'www.oracle.com', '', '0', '2005-01-01', 'DBA')
GO
INSERT INTO fyi_links VALUES (106,
'www.php.net', '', '0', '2004-01-01', 'DEV')
GO
INSERT INTO fyi_links VALUES (107,
'www.winrunner.com', '', '0', '2003-01-01', 'SQA')
GO
UPDATE fyi_links
SET counts = CAST(LOG(id)*1000000 AS INT) % 1000
GO
SELECT * FROM fyi_links
GO
id url notes counts created tag
101 dev.fyicenter.com NULL 120 2006-04-30 DEV
102 dba.fyicenter.com NULL 972 2007-05-19 DBA
103 sqa.fyicenter.com NULL 728 2007-05-19 SQA
104 www.mysql.com 390 2006-01-01 DBA
105 www.oracle.com 960 2005-01-01 DBA
106 www.php.net 439 2004-01-01 DEV
107 www.winrunner.com 828 2003-01-01 SQA
(Continued on next topic...)
- What Is a SELECT Query Statement?
- How To Create a Testing Table with Test Data?
- How To Select All Columns of All Rows from a Table with a SELECT statement?
- How To Select Some Specific Columns from a Table in a Query?
- How To Select Some Specific Rows from a Table?
- How To Add More Data to the Testing Table?
- How To Sort the Query Output with ORDER BY Clauses?
- Can the Query Output Be Sorted by Multiple Columns?
- How To Sort Query Output in Descending Order?
- How To Count Rows with the COUNT(*) Function?
- Can SELECT Statements Be Used on Views?
- How To Filter Out Duplications in the Returning Rows?
- What Are Group Functions in Query Statements?
- How To Use Group Functions in the SELECT Clause?
- Can Group Functions Be Mixed with Non-group Selection Fields?
- How To Divide Query Output into Multiple Groups with the GROUP BY Clause?
- How To Apply Filtering Criteria at Group Level with The HAVING Clause?
- How To Count Duplicated Values in a Column?
- Can Multiple Columns Be Used in GROUP BY?
- Can Group Functions Be Used in the ORDER BY Clause?
|