did-you-know? rent-now

Amazon no longer offers textbook rentals. We do!

did-you-know? rent-now

Amazon no longer offers textbook rentals. We do!

We're the #1 textbook rental company. Let us show you why.

9780672328671

Sams Teach Yourself Microsoft SQL Server T-SQL in 10 Minutes

by
  • ISBN13:

    9780672328671

  • ISBN10:

    0672328674

  • Edition: 1st
  • Format: Paperback
  • Copyright: 2007-08-02
  • Publisher: Sams Publishing
  • View Upgraded Edition
  • Purchase Benefits
  • Free Shipping Icon Free Shipping On Orders Over $35!
    Your order must be $35 or more to qualify for free economy shipping. Bulk sales, PO's, Marketplace items, eBooks and apparel do not qualify for this offer.
  • eCampus.com Logo Get Rewarded for Ordering Your Textbooks! Enroll Now
List Price: $29.99 Save up to $7.05
  • Digital
    $22.94
    Add to Cart

    DURATION
    PRICE

Supplemental Materials

What is included with this book?

Summary

Sams Teach Yourself Microsoft SQL Server T-SQL in 10 Minutesoffers straightforward, practical answers when you need fast results. By working through 10-minute lessons, yours"ll learn everything you need to know to take advantage of Microsoft SQL Serverrs"s T-SQL language. This handy pocket guide starts with simple data retrieval and moves on to more complex topics, including the use of joins, subqueries, full text-based searches, functions and stored procedures, cursors, triggers, table constraints, XML, and much more. Yours"ll learn what you need to know methodically, systematically, and simplyin highly focused lessons designed to make you immediately and effortlessly productive. Tips point out shortcuts and solutions Cautions help you avoid common pitfalls Notes explain additional concepts, and provide additional information 10 minutes is all you need to learn how tohellip; Use T-SQL in the Microsoft SQL Server environment Construct complex T-SQL statements using multiple clauses and operators Filter data so you get the information you need quickly Retrieve, sort, and format database contents Join two or more related tables Make SQL Server work for you with globalization and localization Create subqueries to pinpoint your data Automate your workload with triggers Create and alter database tables Work with views, stored procedures, and more Register your book at www.samspublishing.com/register to download examples and source code from this book. Category: Databases/Microsoft SQL Server Covers: Microsoft SQL Server T-SQL User Level: Beginning-Intermediate $19.99 USA / $22.99 CAN / pound;10.99 Net UK

Author Biography

Ben Forta is Adobe Systems’s Senior Technical Evangelist and has over 20 years of experience in the computer industry in product development, support, training, and product marketing. Ben is the author of the bestselling Sams Teach Yourself SQL in 10 Minutes (now in its third edition, and translated into more than a dozen languages), MySQL Crash Course, ColdFusion Web Application Construction Kit and Advanced ColdFusion Development (both published by Que), Sams Teach Yourself Regular Expressions in 10 Minutes, as well as books on Flash, Java, WAP, Windows 2000, and other subjects. He has extensive experience in database design and development, has implemented databases for several highly successful commercial software programs, and is a frequent lecturer and columnist on Internet and database technologies. Born in London, England, and educated in London, New York, and Los Angeles, Ben now lives in Oak Park, Michigan with his wife Marcy and their seven children. Ben welcomes your email at ben@forta.com, and invites you to visit his website at http://www.forta.com/.

Table of Contents

Understanding SQLp. 5
Introducing SQL Serverp. 13
Working with SQL Serverp. 19
Retrieving datap. 27
Sorting retrieved datap. 37
Filtering datap. 45
Advanced data filteringp. 53
Using wildcard filteringp. 61
Creating calculated fieldsp. 69
Using data manipulation functionsp. 79
Summarizing datap. 91
Grouping datap. 101
Working with subqueriesp. 111
Joining tablesp. 123
Creating advanced joinsp. 137
Combining queriesp. 149
Full-text searchingp. 157
Inserting datap. 171
Updating and deleting datap. 181
Creating and manipulating tablesp. 187
Using viewsp. 199
Programming with T-SQLp. 209
Working with stored proceduresp. 223
Using cursorsp. 235
Using triggersp. 243
Managing transaction processingp. 251
Working with XMLp. 259
Globalization and localizationp. 269
Managing securityp. 279
Improving performancep. 287
Getting started with SQL Server and T-SQLp. 291
The example tablesp. 295
T-SQL statement syntaxp. 303
SQL datatypesp. 309
T-SQL reserved wordsp. 315
Table of Contents provided by Blackwell. All Rights Reserved.

Supplemental Materials

What is included with this book?

The New copy of this book will include any supplemental materials advertised. Please check the title of the book to determine if it should include any access cards, study guides, lab manuals, CDs, etc.

The Used, Rental and eBook copies of this book are not guaranteed to include any supplemental materials. Typically, only the book itself is included. This is true even if the title states it includes any access cards, study guides, lab manuals, CDs, etc.

Excerpts

= 0) {slash = '\\';} else {slash = '/';}openLoc = figLoc.substring(0, figLoc.lastIndexOf(slash) + 1);while (pPage.substring(0,3) == '../') {openLoc = openLoc.substring(0, openLoc.lastIndexOf(slash, openLoc.length - 2)+ 1);pPage = pPage.substring(3, pPage.length + 1);}popUpWin =window.open('','popWin','resizable=1,scrollbars=1,location=0,toolbar=0,width=525,height=394');figDoc = popUpWin.document;zhtm= ' ' + pPage + ' ';zhtm += ' ';zhtm += ' ';zhtm += ' ';zhtm += '' + pPage.substring(pPage.lastIndexOf('/') + 1, pPage.length) + '';zhtm += ' ';figDoc.write(zhtm);figDoc.close();}// modified 3.1.99 RWE v4.1 --> Introduction IntroductionMicrosoftreg; SQL Server has become one of the most popular database management systems in the world. From small development projects to some of the best-known and most prestigious sites on the Web, SQL Server has proven itself to be a solid, reliable, fast, and trusted solution to all sorts of data-storage needs.This book is based on my best-selling book Sams Teach Yourself SQL in 10 Minutes, which has become one of the most-used SQL tutorials in the world, with an emphasis on teaching what you really need to know, methodically, systematically, and simply. But as popular and as successful as that book is, it does have some limitations:In covering all the major DBMSs, coverage of DBMS-specific features and functionality had to be kept to a minimum.To simplify the SQL taught, the lowest common denominator had to be found; SQL statements that would (as much as possible) work with all major DBMSs. This requirement necessitated that better DBMS-specific solutions not be covered.Although basic SQL tends to be rather portable between DBMSs, more advanced SQL most definitely is not. As such, that book could not cover advanced topics, such as triggers, cursors, stored procedures, access control, transactions, and more in any real detail.And that is where this book comes in. Sams Teach Yourself Microsoft reg; SQL Server T-SQL in 10 Minutes builds on the proven tutorials and structure of Sams Teach Yourself SQL in 10 Minutes, without getting bogged down with anything but Transact-SQL (T-SQL, for short). It starts with simple data retrieval and works on to more complex topics, including the use of joins, subqueries, full text-based searches, functions and stored procedures, cursors, triggers, table constraints, XML, and much more. You'll learn what you need to know methodically, systematically, and simply in highly focused lessons designed to make you immediately and effortlessly productive.Note: Written for SQL Server 2005 -This book was written with SQL Server 2005 in mind, and covers features and technologies n

Rewards Program