Skip to main content

Updates

What's SQL?

S

QL stands for Structured Query Language. SQL is the language for talking to relational databases. It's been used by millions of people, since 1986 and provides the user with CRUD functionality. The user can Create data in a database, Read it, Update it, and Delete it.

SQL is a cornerstone of data processing and by extension, the modern business world. Its usefulness means you'll meet many SQL users who don't have the word data, in their job title.

A SQL query to access rows of data follows a predictable format.

SELECT, request a column of tabular data

FROM, specifies the table to access

WHERE, sets conditions for inclusion

GROUP BY, aggregates the resulting rows into groups. 

And ORDER BY and LIMIT, determine how the data is ordered and limited, and count.

All the commands after the second line are optional. But when present, they are always in that order. And these are just the basics.

SQL also provides some simple mathematical functions out of the box, average, min, max, sum, count, and several trigonometric functions.

It can also be configured to access more complex, machine-learning algorithms and predictive models.

But that's not native to SQL itself.

The analysis we can perform inside SQL itself is somewhat limited in that way. However limited, It's a dependable workhorse. You can save and reuse a good query indefinitely, using it as a single source of truth for a particular question. That means SQL can give you fresh data in a consistent format. 

Since its introduction, many sub-languages of SQL have been introduced. These add features for convenience, security, distributed computing, and more. Once you learn the basics of SQL, it's not too hard to learn another SQL sub-language like MySQL or Postgres.

Comments

Popular Posts

Difference between Data Scientist & Data Analyst

 T ransitioning from a Data Analyst to a Data Scientist Although their many similarities between the two career paths, there are also many differences as well. The higher pay that Data Scientists receive comes with more responsibility. This extra responsibility entails more studying, more knowledge, and more practicing your coding skills. Below are a few pointers on what I would recommend you to do if you wish to make that transition from a Data Analyst to a Data Scientist. Play the role of a Data Scientist. If you’ve made the decision to transition into a Data Scientist, you must have done a lot of extra reading to fully understand what it entails to become a Data Scientist. You will go from describing trends in your data to uncover new data using your existing data and build machine learning models to support your hypothesis. Data Scientists: Spend a lot of their time cleaning data using languages like Python or R. Build predictive models using machine learning algorithms such as...

Introduction to Data

D ata is information, especially facts or numbers, collected to be examined and considered and used to help decision-making, or information in an electronic form that can be stored and used by a computer. In other words, Data is a set of variables which can be quantitative or qualitative. Data Types: Data can be either quantitative or qualitative. Understanding the difference between quantitative and qualitative data is very important, because they are treated and analyzed in different ways: for example, you cannot calculate statistics for qualitative data, or you cannot exploit Natural Language Processing techniques for quantitative data. Data is information, especially facts or numbers, collected to be examined and considered and used to help decision-making, or information in an electronic form that can be stored and used by a computer. In other words, Data is a set of variables which can be quantitative or qualitative. Data Types: Data can be either quantitative or qualitative. Und...

How Data Science is changing today's world?

I n today's world, data is all around us, and with the right tools and techniques, it can be used to drive innovation, solve complex problems, and change the world as we know it. In this blog, we'll take a deep dive into the world of data science, exploring what it is, how it works, and why it's so important in today's world. Let's explore the power of data science and its impact on the world around us. Data science is a rapidly growing field that has the potential to transform the world in which we live. At its core, data science is about using data to solve problems and make decisions. It involves gathering and analyzing large amounts of data, and using that data to create insights, predictions, and recommendations. Data science is used in a wide range of industries, from healthcare to finance, and from marketing to transportation. One of the key drivers of the growth of data science is the explosion of big data. Big data refers to the vast amounts of data that ar...