Skip to content

Terr For MER

coding fresh is realistic

  • Blockchain
  • QA engineering in 2021
  • Why you need to know SQL
  • Hackaton differences
  • About Kubernetes
Month

July 2025

How SQL powers the digital world: from Apps to Analytics

By Terra07/28/202507/29/2025
How SQL powers the digital world: from Apps to Analytics

We live in a digital world powered by apps, websites, and cloud platforms. These platforms are smarter and interconnected in today’s digital-powered world. Do you know that there is one programming language that runs it all – SQL (Structured Query Language). SQL is a special language that is more than just a tool for querying …

Continue Reading

Will AI Take Your Programming Job? A Realistic Look at the Future of Code

By Terra07/28/202507/28/2025
Will AI Take Your Programming Job? A Realistic Look at the Future of Code

In recent years, artificial intelligence has grown exponentially with a mix of awe and anxiety. There are many tools like DeepSeek, ChatGPT, and GitHub Copilot that are changing the way we live as they are capable of building apps, answering questions, and creating websites – all with a single prompt. The question many people wonder …

Continue Reading

Recent Posts

  • How SQL powers the digital world: from Apps to Analytics
  • Will AI Take Your Programming Job? A Realistic Look at the Future of Code
  • The Testing Pyramid in Practice: How to Balance Unit, Integration, and End-to-End Tests
  • Building Your Financial Future: Crafting the Best Wealth Management or Investment Website
  • SQL and Blockchain: A Powerful Combination for Data Security and Integrity

Archives

  • July 2025
  • March 2025
  • February 2024
  • September 2023
  • August 2023
  • June 2023
  • February 2023
  • March 2022
  • August 2021
  • July 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020

Categories

  • Blog
  • C#
  • C++
  • Programming
  • Python
  • Ruby

SQLite is not a toy

Here’s why SQLite is perfect for your day-to-day work. It doesn’t matter if you are a developer, analyst, tester, admin or product manager.

For starters, a few known facts:

SQLite is the most widely used database management system in the world, included in all popular operating systems.

Works without a server.

For developers, it is embedded directly into the application.

For everyone else – a convenient console (REPL) in one file (sqlite3.exe on Windows, sqlite3 on Linux / macOS).

Console, import and export

The console is a killer feature of SQLite: a more powerful data analysis tool than Excel, and much simpler than any pandas. Data from CSV is loaded with one command, the table is created automatically:

> .import –csv city.csv city
> select count (*) from city;
1117

Basic SQL features are supported, and the console shows the result in a nice table. There are also advanced SQL features, but more about them later.

select
century || ‘th century’ as dates,
count (*) as city_count
from history
group by century
order by century desc;

Terr For MER 2021 Copyrighted (clickable)

Check it out

  • Privacy Policy

Artists Try Their Best

Wanna try to code with Python? Start here!

https://youtu.be/rfscVS0vtbw
Theme: Sublime Blog by Sublime Theme. Proudly powered by WordPress Privacy Policy