All in One Offer! | Access Unlimited Courses in any category starting at just $29. Offer Ends in:

Browse Library

  • Business Solutions
  • Become an Instructor
  • 0
    Shopping Cart

    Your Cart is empty. Keep shopping to find a course!

    Browse Courses
Get Unlimited Learning Access
$29
4 days left at this price!
30-Day Money-Back Guarantee

This plan includes

  • Instant access to 11,000+ online courses
  • Play & Pause Course Videos
  • HD Video Recorded Lectures
  • Learn on Mobile/PC/Tablet
  • Quizzes and Real Projects
  • Lifetime Course Certificate
  • Instructor Chat Support
  • Cancel Plan Anytime
Subscribe to Learnfly’s top courses
Get this course, plus 11,000+ of our top-rated courses for one year with Go Annually Plan.
$348 $244 a year Save 30%
4 days left at this price!
30-Day Money-Back Guarantee

This plan includes

  • Instant access to 11,000+ online courses
  • Play & Pause Course Videos
  • HD Video Recorded Lectures
  • Learn on Mobile/PC/Tablet
  • Quizzes and Real Projects
  • Lifetime Course Certificate
  • Instructor Chat Support
  • Cancel Plan Anytime
$29
$244
  • You will learn how to expertly run queries in a smart and intelligent way.

In this course you'll learn all the basics about SQL queries:

* The SELECT statement

* The FROM clause

* The WHERE clause

* The ORDER BY and GROUP BY clauses

... as well as a brief look at temp tables, table variables and UNION queries.

 

At the end we have two bonus sections:

1. A brief look at STORED PROCEDURES

2. A brief look at USER DEFINED FUNCTIONS

This course has a lot of learning packed into roughly 4 to 5 hours of instruction.

  • You will need to download and install any version of SQL Server, like SQL Express.
  • You should have an awareness of databases, particularly relational databases: Tables, records, etc.
View More...
  • Section 1 : Queries - Part 1 - SELECT Records 16 Lectures 00:46:46

    • Lecture 1 :
    • Lecture 2 :
    • ** SECTION DESCRIPTION **
    • Lecture 3 :
    • SELECT *
    • Lecture 4 :
    • SELECT COUNT(*)
    • Lecture 5 :
    • SELECT DISTINCT
    • Lecture 6 :
    • SELECT ISNULL()
    • Lecture 7 :
    • SELECT SUM()
    • Lecture 8 :
    • SELECT MAX()
    • Lecture 9 :
    • SELECT MIN()
    • Lecture 10 :
    • SELECT MAX() and MIN() Example
    • Lecture 11 :
    • SELECT AVG()
    • Lecture 12 :
    • SELECT MAX(), MIN() and AVG() Example
    • Lecture 13 :
    • Concatenation Example
    • Lecture 14 :
    • SELECT CASE Example
    • Lecture 15 :
    • SELECT CASE and Concatenation Example
    • Lecture 16 :
    • SELECT Statement
    • Let's see if you remember.....
  • Section 2 : Part 2 - FROM Clause 10 Lectures 01:01:42

    • Lecture 1 :
    • ** SECTION DESCRIPTION **
    • Lecture 2 :
    • FROM - NO JOIN
    • Lecture 3 :
    • FROM - INNER JOIN
    • Lecture 4 :
    • FROM - LEFT JOIN
    • Lecture 5 :
    • FROM - LEFT vs INNER
    • Lecture 6 :
    • FROM - LEFT vs RIGHT
    • Lecture 7 :
    • FROM - INNER JOIN with Temp Table
    • Lecture 8 :
    • FROM - INNER JOIN with Table Variable
    • Lecture 9 :
    • UNION QUERY - TSQL Command Line
    • Lecture 10 :
    • FROM Clause
    • Can you recall?
  • Section 3 : Part 3 - WHERE Clause 13 Lectures 01:12:57

    • Lecture 1 :
    • ** SECTION DESCRIPTION **
    • Lecture 2 :
    • WHERE X = Y
    • Lecture 3 :
    • WHERE X > Y
    • Lecture 4 :
    • WHERE X IN (a, b, c, d)
    • Lecture 5 :
    • WHERE X NOT IN (a, b, c, d)
    • Lecture 6 :
    • WHERE X BETWEEN
    • Lecture 7 :
    • WHERE X IN (SELECT ...)
    • Lecture 8 :
    • WHERE X NOT IN (SELECT ...)
    • Lecture 9 :
    • WHERE - IN Clause vs Sub Query
    • Lecture 10 :
    • WHERE - AND Operator
    • Lecture 11 :
    • WHERE - OR Operator
    • Lecture 12 :
    • WHERE - AND Operator, OR Operator and Parentheses
    • Lecture 13 :
    • WHERE Clause
    • Can you remember this......?
  • Section 4 : Part 4 - ORDER BY Clause 13 Lectures 00:33:00

    • Lecture 1 :
    • ORDER BY 1, 2
    • Lecture 2 :
    • ** SECTION DESCRIPTION **
    • Lecture 3 :
    • ORDER BY 1, 2 (Possible Issues)
    • Lecture 4 :
    • ORDER BY ,
    • Lecture 5 :
    • ORDER BY - ASCII Values
    • Lecture 6 :
    • ORDER BY - COLATION
    • Lecture 7 :
    • ORDER BY - ASC
    • Lecture 8 :
    • ORDER BY - DESC
    • Lecture 9 :
    • ORDER BY CASE - Part 1
    • Lecture 10 :
    • ORDER BY CASE - Part 2
    • Lecture 11 :
    • ORDER BY CASE - Part 3
    • Lecture 12 :
    • ORDER BY (SELECT ...)
    • Lecture 13 :
    • ORDER BY Clause
    • Can you answer these questions?
  • Section 5 : Part 5 - GROUP BY Clause 11 Lectures 00:17:06

    • Lecture 1 :
    • ** SECTION DESCRIPTION **
    • Lecture 2 :
    • GROUP BY - MIN() & MAX() - Part 1
    • Lecture 3 :
    • GROUP BY - MIN() & MAX() - Part 2
    • Lecture 4 :
    • GROUP BY - MIN() & MAX() - Part 3
    • Lecture 5 :
    • GROUP BY - COUNT()
    • Lecture 6 :
    • GROUP BY - SUM()
    • Lecture 7 :
    • GROUP BY - AVG()
    • Lecture 8 :
    • GROUP BY - HAVING CLAUSE - Part 1
    • Lecture 9 :
    • GROUP BY - HAVING CLAUSE - Part 2
    • Lecture 10 :
    • GROUP BY - HAVING CLAUSE - Part 3
    • Lecture 11 :
    • GROUP BY Clause
    • Did you learn....?
  • Section 6 : Part 6: BONUS SECTION - A Quick Look at STORED PROCEDURES 5 Lectures 00:16:26

    • Lecture 1 :
    • STORED PROCEDURES - EXAMPLE 1- Part 1
    • Lecture 2 :
    • ** SECTION DESCRIPTION **
    • Lecture 3 :
    • STORED PROCEDURES - EXAMPLE 1- Part 2
    • Lecture 4 :
    • STORED PROCEDURES - EXAMPLE 1- Part 3
    • Lecture 5 :
    • STORED PROCEDURES - EXAMPLE 2 - How To Write to a Text File
  • Section 7 : Part 7: BONUS SECTION - A Quick Look at USER DEFINED FUNCTIONS 4 Lectures 00:16:02

    • Lecture 1 :
    • ** SECTION DESCRIPTION **
    • Lecture 2 :
    • USER DEFINED FUNCTIONS - EXAMPLE 1 - FormatCustName()
    • Lecture 3 :
    • USER DEFINED FUNCTIONS - EXAMPLE 2 - PrePad() Function - Part 1
    • Lecture 4 :
    • USER DEFINED FUNCTIONS - EXAMPLE 2 - PrePad() Function - Part 2
  • How do i access the course after purchase?

    It's simple. When you sign up, you'll immediately have unlimited viewing of thousands of expert courses, paths to guide your learning, tools to measure your skills and hands-on resources like exercise files. There’s no limit on what you can learn and you can cancel at any time.
  • Are these video based online self-learning courses?

    Yes. All of the courses comes with online video based lectures created by certified instructors. Instructors have crafted these courses with a blend of high quality interactive videos, lectures, quizzes & real world projects to give you an indepth knowledge about the topic.
  • Can i play & pause the course as per my convenience?

    Yes absolutely & thats one of the advantage of self-paced courses. You can anytime pause or resume the course & come back & forth from one lecture to another lecture, play the videos mulitple times & so on.
  • How do i contact the instructor for any doubts or questions?

    Most of these courses have general questions & answers already covered within the course lectures. However, if you need any further help from the instructor, you can use the inbuilt Chat with Instructor option to send a message to an instructor & they will reply you within 24 hours. You can ask as many questions as you want.
  • Do i need a pc to access the course or can i do it on mobile & tablet as well?

    Brilliant question? Isn't it? You can access the courses on any device like PC, Mobile, Tablet & even on a smart tv. For mobile & a tablet you can download the Learnfly android or an iOS app. If mobile app is not available in your country, you can access the course directly by visting our website, its fully mobile friendly.
  • Do i get any certificate for the courses?

    Yes. Once you complete any course on our platform along with provided assessments by the instructor, you will be eligble to get certificate of course completion.
  • For how long can i access my course on the platform?

    You require an active subscription to access courses on our platform. If your subscription is active, you can access any course on our platform with no restrictions.
  • Is there any free trial?

    Currently, we do not offer any free trial.
  • Can i cancel anytime?

    Yes, you can cancel your subscription at any time. Your subscription will auto-renew until you cancel, but why would you want to?

5162 Course Views

1 Courses

Dave has been developing software since the mid-1990's. He is a full stack developer. He has consulted for drug companies, oil companies and is currently creating custom software for testing laboratories. Recent clients include Stanley Black and Decker and the University of Arkansas.
View More...
  • Unmatched Variety and Value!
    Learnfly's monthly subscription offers unlimited access to a vast range of courses. Affordable pricing, compared to competitors, makes it the ultimate choice for continuous learning.
    Jessica M.

    4.7

    JM
  • Top-Notch Quality, Affordable Rates!
    High-quality courses with certified instructors make Learnfly stand out. The affordable pricing is a game-changer for those seeking premium education.
    Alex P.

    4.5

    AP
  • Certified Excellence Every Time!
    Learnfly's courses, taught by certified instructors, ensure top-notch learning experiences. The course completion certificates add significant value to one's skill set.
    Sarah R.

    4.3

    SR
  • Round-the-Clock Support!
    Learnfly goes the extra mile with 24/7 course support. Their dedication to helping students succeed is commendable.
    Ryan K.

    4.1

    RK
  • Learn Anywhere, Anytime!
    Whether on mobile, PC, or tablet, Learnfly's platform offers flexibility. Learning on the go has never been easier.
    Emily S.

    4.7

    ES
  • Job-Ready Skills!
    Learnfly's job-oriented courses equip learners with practical skills for the workplace. An investment in career growth!
    Jake M.

    4.2

    JM
  • Budget-Friendly Brilliance!
    Learnfly's pricing is a steal for the quality and variety of courses offered. Quality education without breaking the bank.
    Olivia T.

    4.5

    OT
  • Instructor Excellence Unleashed!
    Learn from the best with Learnfly's certified instructors. The platform ensures that knowledge is imparted by industry experts.
    Daniel L.

    4.0

    DL
  • Achievement Unlocked!
    Learnfly not only offers courses but also recognizes your efforts with course completion certificates. A sense of accomplishment with every course finished.
    Maya H.

    4.6

    MH
  • Learning Revolution!
    Learnfly's platform is a revolution in education. Access to unlimited courses at affordable rates is a game-changer.
    Ethan W.

    4.7

    EW
  • infinite-scroll-project-ajax-mysql-api-php-jquery

    Infinite Scroll Project AJAX MySQL ...

    By : Laurence Svekis

    Lectures 19 Beginner 1:26:34
  • learn-to-build-sql-query-ultimate-sql-and-database-concepts

    Learn to Build SQL Query Ultimate S...

    By : Jazeb Akram

    Lectures 24 Beginner 2:11:45
  • sql-server-101-microsoft-sql-server-for-absolute-beginners

    SQL Server 101 : Microsoft SQL Serv...

    By : Rashid Khan

    Lectures 44 Beginner 3:47:42
  • sql-nosql-big-data-and-hadoop

    SQL, NoSQL, Big Data and Hadoop

    By : Michael Enudi

    Lectures 129 All Level 19:51:53

Students learning on Learnfly works with Fortune 500 companies around the globe.

Sign Up & Start Learning
By signing up, you agree to our Terms of Use and Privacy Policy
Reset Password
Enter your email address and we'll send you a link to reset your password.