Stop doing this in your SQL queries if you already are Photo by Caspar Camille Rubin on Unsplash Wondering what is SQL injection? SQL injection is one of the most popular web hacking techniques which allows the…
Browsing Category sql
Auto Added by WPeMatico
Analysing Data In Web3 With SQL
Web3 data exploration and analysis using SQL on Dune Analysing Data In Web3 With SQL was originally published in Better Programming on Medium, where people are continuing the conversation by highlighting and responding to this story.
A Complete Guide to Generated Columns in MySQL
Make your backend faster and simpler Continue reading on Better Programming »
Blind SQL Injection — Threat or Child’s Play?
Blind SQL injection is a type of SQL injection where an attacker cannot figure out how our web applications “think” Continue reading on Better Programming »
The Best Way to Update a Drag-and-drop Sorting List Through Database Schemas
Harness the power of SQL The Best Way to Update a Drag-and-drop Sorting List Through Database Schemas was originally published in Better Programming on Medium, where people are continuing the conversation by highlighting and responding to…
From 0 to 300 SQL Queries a Month: My 3 Best Tips
Six months of T-SQL all day, every day Photo by Alejandro Escamilla on Unsplash When I started my current role back in August of 2021, I had written maybe three or four SQL queries in my life….
Keeping track of database schema changes
Keeping Track of Database Schema Changes Tips to help you with database changes Keeping track of database schema changes was originally published in Better Programming on Medium, where people are continuing the conversation by highlighting and responding…
Go and SQL: Pitfalls With Existing Libraries (and a Better Solution)
Go and SQL: Pitfalls With Existing Libraries (and a Better Solution) Meet KSQL — A library I wrote to address the problems of Golang and SQL Photo by Chinmay Bhattar on Unsplash In my years working with Golang, I…
Dealing With Slow SQL Queries? Let the “EXPLAIN” Statement Handle It
Understand EXPLAIN query plans (part 1 of 2) Dealing With Slow SQL Queries? Let the “EXPLAIN” Statement Handle It was originally published in Better Programming on Medium, where people are continuing the conversation by highlighting and…
How the N+1 Query Can Burn Your Database
A brief guide to handling this harmful logic Overview Have you ever watched a movie/series or experienced yourself going to a hotel where they have room service? Let’s say you go to one of these hotels, where…
Async All The Way Down!
SqlAlchemy 1.4 now supports asyncio Async All The Way Down! was originally published in Better Programming on Medium, where people are continuing the conversation by highlighting and responding to this story.
What is Filegroup in Sql Server? When & How to Create?
SQL Server database is a term you’re probably already familiar with. When it comes to storing large amounts of data, databases are extremely useful. And as you’ve figured out, SQL Server’s default settings aren’t always…
Improving Performance in a Hierarchical SQL Table Structure With Column Propagation
Hierarchy structures are common in databases, and if not approached correctly, they might lead to performance issues Continue reading on Better Programming »
The Proper Use of the Where Tag in Mybatis
And a few ways to not use it Continue reading on Better Programming »
How to Achieve Dynamic SQL Query With Go
Start by using Rows.Columns or Rows.ColumnTypes to get column information Photo by Sunder Muthukumaran on Unsplash For most applications, we will know what data we need from the database, then we can define the appropriate data…