Skip navigation
Courses
Pricing
For Students
SQL Library
Articles
Cookbook
Cheat Sheets
Log in
Create free account
fullName
User profile menu open
Open user profile menu
fullName
Dashboard
My Profile
Payment & Billing
Log out
MENU
CLOSE
Courses
Pricing
For Students
Articles
Cookbook
Cheat Sheets
Dashboard
My Profile
Payment & Billing
Log in
Create free account
Log out
Articles
Cookbook
23 Nov 2017
Dorota Wdzięczna
SQL Hacks To Control Family Budget On Black Friday Weekend
If you’re in the US, chances are you’ve been eagerly awaiting the approach of Black Friday just as much as Thanksgiving. Though the shopping frenzy takes hold of nearly everyone, some people have to stick to their budgets and shop prudently. In this article, we’ll take a look at how generating an SQL report can help you track how much your family spent shopping on Black Friday. Storing Black Friday Purchases in a Database Before we can create an SQL report, we first need some data we can use.
Read more
13 Nov 2017
Aldo Zelen
Introduction to Reporting with SQL — the Ultimate Tutorial for Business Professionals
Working with the financial aspects of large and small enterprises can be a daunting task for a business professional. In this article, we'll look at several ways of constructing the perfect SQL report. You've probably already heard about SQL from your colleagues or in other areas of your career. If you're here, you've likely concluded that learning SQL will make your professional life easier – and you're right!
Read more
9 Nov 2017
Alex Briggs
5 Great Benefits of Learning SQL
If you want your business to succeed in 2017, it’s absolutely critical that you understand your data; this is why you should get acquainted with SQL ASAP. But there are other reasons to learn it that may not be obvious. In this article, I’ll show you 5 huge benefits of learning SQL! Don’t fall for the common trap—analyzing data isn’t just a concern for those competing at national or corporate levels.
Read more
25 Oct 2017
Dorota Wdzięczna
Most Popular SQL Interview Questions for Business Analysts
SQL is an extremely desirable skill for anyone in today’s market—not just those in the IT sector. It’s becoming increasingly common for employers to require at least a basic knowledge of SQL in professions related to finance, statistics, banking, and business analytics. In this article, we will focus on the SQL interview questions for business analyst (BA) positions that appear at job interviews most often.. The best way to learn SQL is through practice.
Read more
21 Oct 2017
Dorota Wdzięczna
Why Is SQL Worth Learning?
Nowadays, data is gathered from a variety of sources, and information is of great value to organizations. However, with an increasing amount of data comes the need for databases that can store information for retrieval and analysis by trained specialists. That’s where Structured Query Language comes in. Is SQL worth learning? In this article, I’ll explain why it definitely is. Relational databases, which logically group information into chunks, are basically used to store and organize large amounts of data.
Read more
18 Oct 2017
Ignacio L. Bisso
Learn SQL Views in 30 Minutes
Views aren't complicated – if you've got half an hour, we'll get you started writing SQL queries using views! Let's start by answering the question "What is a view in SQL?'. A view is a database object (as is a table, an index, or a stored procedure). Like a table, you can query a view and extract the information in it. It can be used in the FROM clause of a SELECT, and you can reference view columns in clauses like SELECT, WHERE and GROUP BY among other clauses as well.
Read more
16 Oct 2017
Aldo Zelen
How to Organize SQL Queries with CTEs
Common table expressions (CTEs) allow you to structure and organize SQL queries. Knowing how to organize SQL queries is a necessity when you begin to move deeper into SQL, so if you want to become an SQL master, you need to know CTEs. The SQL CTE has been part of standard SQL for some time now. CTEs – which are also called WITH statements – are available in all major RDBMS.
Read more
12 Oct 2017
Ignacio L. Bisso
SQL Window Functions By Explanation
In our previous post, we explained how SQL window functions work by example. We started with some very simple, basic functions. Let's extend it by explaining subclauses in window functions. SQL window functions are a great way to compute results from a set of rows rather than a single row. As you know from our first article, the "window" in window function refers to the set of rows. We showed you some examples of simple window functions like RANK and LEAD.
Read more
10 Oct 2017
Aldo Zelen
Long SQL Query vs. Recursive SQL Query
Recursion is one of the central ideas in computer science. We can define it as a method for solving problems where the solution of the problem depends on solving a smaller instance of a problem. If this sounds complicated do not fret, in this article we will learn about recursion in SQL that you can practice and deepen in Vertabelo Academy. Recursion is a way of solving hierarchical problems we find in data with common SQL.
Read more
28 Sep 2017
Dorota Wdzięczna
An Illustrated Guide to Multiple Join
So far, our articles in the "An Illustrated Guide" series have explained several join types: INNER JOINs, OUTER JOINs (LEFT JOIN, RIGHT JOIN, FULL JOIN), CROSS JOIN, self-join and non-equi join. In this final article of the series, we show you how to create SQL queries that match data from multiple tables using one or more join types. Join Types in SQL Queries Before we start discussing example SQL queries that use multiple join types, let's do a short recap of the join types we've covered so far, just to be sure you understand the differences.
Read more
««
«
1
2
3
67
68
69
77
»
»»