DEV Community

Biagio J Mendolia
Biagio J Mendolia

Posted on

SQL & Databases

Recently at work I’ve been assigned a few different tasks involving databases and using Microsoft SQL server. I quickly realized that it has been sometime since I have written SQL queries and decided it is best for me to review some of the basics. Here's what I relearned!
Basically, SQL is the language of databases. SQL stands for Structured Query Language. Structured Query Language is a standard Database language which is used to create, maintain and retrieve information from a relational database.
In a database, information or data, are stored in tables inside the database. Tables consist of columns and rows and are identified by a unique name. Each row represents an item and a column provides the properties of the items. You can think of a table as kind of like a spreadsheet.

Databases are used to store data for a majority of the applications/websites that we encounter on a day to day basis. Having a good understanding of how databases work and how to create a SQL query can go a long way in the tech industry! I will be diving deeper into SQL and how to create advanced queries, I suggest you do too. Thanks for stopping by, I hope you enjoyed it!

API Trace View

How I Cut 22.3 Seconds Off an API Call with Sentry 🕒

Struggling with slow API calls? Dan Mindru walks through how he used Sentry's new Trace View feature to shave off 22.3 seconds from an API call.

Get a practical walkthrough of how to identify bottlenecks, split tasks into multiple parallel tasks, identify slow AI model calls, and more.

Read more →

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay