Better Programming

Advice for programmers.

Follow publication

Member-only story

12 Basic SQL Commands for Beginners

Pralabh Saxena
Better Programming
Published in
5 min readMay 14, 2021
Photo by cottonbro from Pexels

SQL ((Structured Query Language) is one of the most commonly used tools used by software developers and programmers. Most websites use a database to store the data of their products or customers.

SQL is a domain-specific language that is used to interact with a relational database management system. It is used to manage and organize the data stored in databases.

In this article, I will discuss some of the most commonly used SQL commands that every software developer and programmer should know.

Let’s get started!

1. Select

This select command is one of the simplest and most essential commands of SQL. As the name suggests, this command is used to select/retrieve the data from a database.

SELECT * FROM table;

This command can be broken down into two parts. The first part (Select *) specifies which columns need to be retrieved from a table, and the second part (FROM table) specifies the name of the table from which data needs to be retrieved.

2. Insert

We talked about retrieving the records from a table, but what about inserting a new record? The insert command is…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Pralabh Saxena
Pralabh Saxena

Written by Pralabh Saxena

Data Engineer | Data Science | Love to write and express. About me https://linktr.ee/pralabhsaxena

Write a response