sql

Recent in

sql

How to Enable MariaDB Replication: A Guide
databases

How to Enable MariaDB Replication: A Guide

https://hackernoon.com

Database replication is a process that copies data from one database (primary) to another (replica) This process can happen as data is inserted, modified, or deleted. With MariaDB, setting up replication requires activating the binary log in the primary database. Multi-master replication allows your application to write to multiple nodes. Distributed SQL enables unlimited scalability while keeping the strong consistency capabilities of relational databases.

Alejandro DuarteDec 6, 2022
A Tool to Help Fix SQL Code Using ChatGPT
sql

A Tool to Help Fix SQL Code Using ChatGPT

https://hackernoon.com

ChatGPT is an artificial intelligence chatbot that can help you with your technical SQL questions. ChatGPT can even help you correct any mistakes in your SQL queries with just one click of a button.

Slava RozhnevFeb 28, 2023
How to Improve Query Speed to Make the Most out of Your Data
data-science

How to Improve Query Speed to Make the Most out of Your Data

https://hackernoon.com

The world is getting more and more value out of data, as exemplified by the currently much-talked-about ChatGPT, which I believe is a robotic data analyst. However, in today's era, what's more important than the data itself is the ability to locate your wanted information among all the overflowing data quickly.

Junfei LiuFeb 23, 2023
10 Free Resources to Become a Health Data Scientist
data-science

10 Free Resources to Become a Health Data Scientist

https://hackernoon.com

Becoming a health data scientist can be challenging, but it is an incredibly rewarding career choice. The rapidly growing field of health data science merges statistical analysis, data visualization, and machine learning to gain insights from healthcare data.

Andrea HobbyFeb 22, 2023
How to Use SQL Triggers
Sql

How to Use SQL Triggers

https://www.freecodecamp.org

MySQL Triggers are like JavaScript event listeners. They are not executed until an action that they have been told to listen for happens.

Zubair Idris AwedaFeb 21, 2023
SQL SELECT Statement – How to Select Data from a Database
The Most Commonly Used SQL Queries by Data Scientists
data-science

The Most Commonly Used SQL Queries by Data Scientists

https://hackernoon.com

SQL (Structured Query Language) is a programming tool or language that is widely used by data scientists to extract and manipulate information from databases. As a data scientist, understanding SQL is essential for extracting and analyzing the data you need to make informed decisions for your organization.

Sarang S.Feb 20, 2023
How to Use Window Functions in SQL – with Example Queries
Sql

How to Use Window Functions in SQL – with Example Queries

https://www.freecodecamp.org

Window functions are an advanced type of function in SQL. They let you work with observations more easily. Window functions give you access to features like advanced analytics and data manipulation without the need to write complex queries.

Ibrahim Abayomi OgunbiyiFeb 9, 2023
How to Make Rough Estimates of SQL Queries
databases

How to Make Rough Estimates of SQL Queries

https://hackernoon.com

Each database runs a query through the standard process (with some deviations depending on dB implementation): Syntax parsing Semantic parsing Planning Executing. The most time-consuming part is usually executed only because the database must go to disk, get some data and send it to the client.

Andrey SundukovFeb 9, 2023
Use Feature Toggle to Safely Release Updates On Your Server
java

Use Feature Toggle to Safely Release Updates On Your Server

https://hackernoon.com

It is very handy to be able to change the behavior of the service at any time without restarting the servers, or to turn off a broken functionality or to conduct AB-testing. To do this, developers usually use Feature Toggles. If your startup has not a giant, but a small group of enthusiasts - you will have to solve this problem using available tools.

Timur MukhitdinovJan 25, 2023
Unexpected Discoveries in TypeORM 0.3.11
database

Unexpected Discoveries in TypeORM 0.3.11

https://hackernoon.com

This article is about an unexpected discovery made while working with TypeORM, an Object-Relational Mapping (ORM) tool that is designed to work with TypeScript. The author upgraded the project to the latest version 0.3.11 and found some incompatible changes that they liked, some they were okay with, and others they didn't like. One of the things they liked was that the .findOne() or findOneBy() methods will no longer return undefined, instead they will return null. One of the things they were okay with was the new version's stricter requirement to pass the whole FindOptions object to the .find() method.

Aleksei KankovJan 25, 2023
Newsletter

Let's keep in touch

Benefit from a weekly updates, coding challenges and helpful resources around software development.

Your privacy is important to us. We promise not to send you spam!