Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Articles with tag
advanced querying
Search for
any
content tagged
advanced querying
<< Previous 20
Items 41 to 60 of 207
Next 20 >>
Creative uses for COALESCE() in SQL Server
COALESCE() accepts a series of values and a value to use in the event that all items in the list are null; then, it returns the first not-null value. This tip describes two creative uses of the COALESCE() function in SQL Server.
Read more...
By
Additional Articles
2007/06/01
|
Source:
Builder.com
|
Category:
advanced querying
Rating:
Rate this
|
Briefcase
|
5,683 reads
Best Practices for Date/Time Calculations in SQL Server
You can use arithmetic operators in date/time calculations in SQL Server, but sometimes the date/time functions provided by Microsoft are the better option. Follow a few scenarios that demonstrate when arithmetic operators are safe and when they are risky.
Read more...
By
Additional Articles
2007/05/28
|
Source:
DevX
|
Category:
advanced querying
Rating:
Rate this
|
Briefcase
|
7,106 reads
SQLChess - A tutorial on thinking in sets
Chess makes a fantastic game for programming examples. You will find hundreds of examples on the internet. Some dedicated to OO patterns, others to algorithms and so forth. Unfortunately, most of these examples do not use a database or if they do, treat the database as nothing more than a storage repository. In this series of articles we will use SQL Server and T-SQL to implement the game of chess with an emphasis on thinking in sets.
Read more...
By
Additional Articles
2007/05/21
|
Source:
SQLTeam.com
|
Category:
advanced querying
Rating:
Rate this
|
Briefcase
|
4,425 reads
SQL Server Grouping Workbench
Robyn Page and Phil Factor take on GROUP BY queries in SQL server, starting on the nursery slopes but finishing with a wild ride off-piste.
Read more...
By
Additional Articles
2007/05/18
|
Source:
SimpleTalk
|
Category:
advanced querying
Rating:
Rate this
|
Briefcase
|
2,287 reads
Converting Hexadecimal String Values to Alpha (ASCII) Strings
In an interesting exercise in data conversion, Stephen Lasham brings us a nice article on basic manipulations.
Read more...
By
Stephen Lasham
2007/05/17
|
Source:
SQLServerCentral.com
|
Category:
advanced querying
Rating:
|
Discuss
|
Briefcase
|
10,810 reads
Returning a week number for any given date and starting fiscal month
Sql Server comes with a host of built in functions such as ISNULL, CONVERT and CAST. Now if that wasn't enough rope to hang ourselves with, as of Sql Server 2000 we gained the ability to create our own user defined functions. In this article I will be looking at the three main date functions DATEADD, DATEPART and DATEDIFF (there is a fourth called DATENAME but I want to get to the end of this article before you fall asleep so I decided to leave it for another date and time! And no it doesn't foretell the name of your future blind date so it's not as interesting as it sounds anyway) Then I will be combining all three in a user defined function of our own by which time our necks will be well and truly stretched
Read more...
By
Additional Articles
2007/05/15
|
Source:
SQLTeam.com
|
Category:
advanced querying
Rating:
Rate this
|
Briefcase
|
2,678 reads
The Truth Table
Truth tables are an important part of working with logical values in SQL Server. Yousef Ekhtiari brings us some T-SQL that can help you construct those many variable truth tables and ensure you are getting the results you expect.
Read more...
By
Yousef Ekhtiari
2007/04/19
|
Source:
SQLServerCentral.com
|
Category:
advanced querying
Rating:
|
Discuss
|
Briefcase
|
10,559 reads
CASE function in SQL Server – part II
Part I of this series illustrated how to use simple case functions in queries. This installment discusses how to use case functions in different types of scenarios.
Read more...
By
Additional Articles
2007/04/12
|
Source:
Database Journal
|
Category:
advanced querying
Rating:
Rate this
|
Briefcase
|
9,247 reads
Keyword Searching in SQL Server
Have you ever wanted to ensure that keywords in your data are easily searchable? Have you struggled with full-text search? New author Michael Ahmadi brings us an interesting idea for a keyword tracking and searching subsystem based on T-SQL and triggers.
Read more...
By
Michael Ahmadi
2007/04/09
|
Source:
SQLServerCentral.com
|
Category:
miscellaneous
Rating:
|
Discuss
|
Briefcase
|
10,290 reads
Storing IPs in SQL Server
An IP address is something we all recognize and is a piece of data that is quite prevalent in many systems. However it is a piece of data tha presents some challenges in its storage and retrieval. SQL Server guru David Poole presents us with a look at how you can work with this strange formatting.
Read more...
By
David Poole
2007/04/02
|
Source:
SQLServerCentral.com
|
Category:
advanced querying
Rating:
|
Discuss
|
Briefcase
|
13,908 reads
Pivot table for Microsoft SQL Server
One of the seeminly more popular enhancements in SQL Server 2005 to T-SQL is the PIVOT operator. There have been quite a few articles, but new author Peter Larsson decomposes in detail how you can perform this operation with previous versions.
Read more...
By
Peter Larsson
2007/03/30 (first published: 2006/06/12)
|
Source:
SQLServerCentral.com
|
Category:
advanced querying
Rating:
|
Discuss
|
Briefcase
|
71,400 reads
The SQL Server helper table workbench
Robyn Page and Phil Factor demonstrate some set-based techniques for string manipulation and time interval-based reporting, which use helper tables rather than iterative logic or the dreaded cursor.
Read more...
By
Additional Articles
2007/03/28
|
Source:
SimpleTalk
|
Category:
advanced querying
Rating:
Rate this
|
Briefcase
|
1,919 reads
Aggregate Queries
They are a basic type of query that every DBA and developer should be able to write, but aggregates are sometimes misunderstood and result in strange behaviors and results. Kathi Kellenberger brings us a tutorial on what aggregate queries are and a few hints on how to become more proficient at writing them.
Read more...
By
Kathi Kellenberger
2007/03/16 (first published: 2005/12/19)
|
Source:
SQLServerCentral.com
|
Category:
advanced querying
Rating:
|
Discuss
|
Briefcase
|
35,195 reads
Build Date Generators and Manipulate Date and Time Data in SQL
Learn how to build date generators without loops using SQL, and some useful techniques to help you manipulate date and time data.
Read more...
By
Additional Articles
2007/03/15
|
Source:
DevX
|
Category:
advanced querying
Rating:
Rate this
|
Briefcase
|
3,698 reads
NULL Versus NULL?
Dealing with NULL data is something that often confuses new SQL Server developers, but even experienced DBAs might not understand all the intricacies of NULL operations. In a follow up to his highly acclaimed Four Rules of Null article, Michael Coles brings us a few new tricks with NULLs.
Read more...
By
Michael Coles
2007/10/05 (first published: 2007/02/26)
|
Source:
SQLServerCentral.com
|
Category:
advanced querying
Rating:
|
Discuss
|
Briefcase
|
37,371 reads
Dealing With Upper and Lower Case Data
Gregory Larsen demonstrates several examples of how to deal with different situations related to the case of character strings.
Read more...
By
Additional Articles
2007/02/16
|
Source:
Database Journal
|
Category:
advanced querying
Rating:
Rate this
|
Briefcase
|
2,487 reads
Tame Those Strings - Finding Carriage Returns
Expanding on his series of string manipulation in T-SQL, Steve Jones takes a look at how you go about removing those unseen characters from your strings.
Read more...
By
Steve Jones
2007/02/13
|
Source:
SQLServerCentral.com
|
Category:
advanced querying
Rating:
|
Discuss
|
Briefcase
|
12,371 reads
Joining Tables Part 2
In this session, Kathi continues her popular series and shows some of the more advanced joining techniques in T-SQL. She shows T-SQL self, outer and cross joins and gives many examples on how to use them.
Read more...
By
Additional Articles
2007/02/08
|
Source:
JumpStartTV
|
Category:
advanced querying
Rating:
Rate this
|
Briefcase
|
4,955 reads
Robyn Page's SQL Server Cursor Workbench
The topic of cursors is the ultimate "hot potato" in the world of SQL Server. Everyone has a view on when they should and mainly should not be used. By example and testing Robyn Page proves that, when handled with care, cursors are not necessarily a "bad thing".
Read more...
By
Additional Articles
2007/02/06
|
Source:
SimpleTalk
|
Category:
advanced querying
Rating:
Rate this
|
Briefcase
|
2,510 reads
When To Use Cursors
Most SQL Server DBAs have been taught that cursors are bad and should not be used. However there are some cases and places where they might be useful. SQL Server guru Andy Warren brings us an example of where they may be handy.
Read more...
By
Andy Warren
2007/01/15
|
Source:
SQLServerCentral.com
|
Category:
advanced querying
Rating:
|
Discuss
|
Briefcase
|
16,622 reads
<< Previous 20
Items 41 to 60 of 207
Next 20 >>
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.