JIYIK CN >

Current Location:Home > Learning >

All

Event Scheduler or Setting Timers in MySQL

Publish Date:2025/04/09 Author:JIYIK Category:MySQL

This tutorial will guide you through creating a MySQL EVENT timer, also known as a MySQL timer. We will see how to set a timer in MySQL to let MySQL manipulate the data (eg. UPDATE // data) INSERT . DELETE It will also take a backup (if req...

Full

Different ways to stop mysqld

Publish Date:2025/04/09 Author:JIYIK Category:MySQL

mysqld Is a daemon server program, also known as MySQL server. It is used to manage the MySQL data directory with tables and databases. This tutorial guides you through the various methods you can use to start, stop, or restart a MySQL serv...

Full

Finding Duplicate Records in a MySQL Table

Publish Date:2025/04/09 Author:JIYIK Category:MySQL

This tutorial discusses how to check for duplicates in a MySQL table and retrieve the number of duplicates using the SELECT DISTINCT and statements, respectively. SELECT COUNT SELECT DISTINCT Check for duplicates in a MySQL table using The...

Full

Validating inserted values in MySQL table with duplicate key

Publish Date:2025/04/09 Author:JIYIK Category:MySQL

Traditional SQL INSERT statements do not perform input validation of their parameters/values ​​against existing database tables, which sometimes results in errors when duplicate keys are found during the insert process. This is handled...

Full

unsigned in MySQL

Publish Date:2025/04/09 Author:JIYIK Category:MySQL

This tutorial aims to understand unsigned in MySQL. unsigned Using keywords in MySQL Businesses and organizations have to assign data type as unsigned for certain columns. However, it is important to understand when and where to use this da...

Full

Sort by RAND in MySQL

Publish Date:2025/04/09 Author:JIYIK Category:MySQL

Summary: in this tutorial, we will learn how to shuffle or sort the values ​​or records of a table in MySQL. Most businesses and organizations that use MySQL for data analysis or visualization need to sort different table values ​​o...

Full

How to declare and use variables in MySQL

Publish Date:2025/04/09 Author:JIYIK Category:MySQL

In this tutorial article, we will explain how to declare variables in SQL code for MySQL database. In SQL scripts, you can use variables to store values ​​and use them in place of literals during the execution of a series of commands. U...

Full

PostgreSQL distinct field value count

Publish Date:2025/04/09 Author:JIYIK Category:PostgreSQL

Getting the distinct values ​​in a field is an important query. This article discusses how to get the distinct count of values ​​in a field. Get distinct count of field values ​​in PostgreSQL Consider a quiz_score table that rec...

Full

Convert integer to string in PostgreSQL

Publish Date:2025/04/09 Author:JIYIK Category:PostgreSQL

This tutorial discusses how to convert an integer to a string in PostgreSQL. Convert integer to string in PostgreSQL Consider a quiz_score table that records the score of each participant in a quiz game. The scores are stored in this table...

Full

Escaping single quotes in PostgreSQL

Publish Date:2025/04/09 Author:JIYIK Category:PostgreSQL

This article discusses how to escape single quotes in PostgreSQL queries. Escaping single quotes in PostgreSQL Consider a comment table that records user comments. The table has 5 fields: id , userid , postid , comments , commentdate , as s...

Full

Linux sort command sort

Publish Date:2025/04/08 Author:JIYIK Category:OPERATING SYSTEM

The sort command is a commonly used sorting command in Linux , and it is also a pipeline command . In order to ensure that future instances can get the sorting results we want, we need to set the following # export LC_ALL=C Okay, next we wi...

Full

Linux statistics command wc

Publish Date:2025/04/08 Author:JIYIK Category:OPERATING SYSTEM

The wc command is a commonly used command in Linux system, and it is also a member of the pipeline command family. wc is a statistical command, which is very simple to use and does not have as many options as sort. Let's take a look at the...

Full

Linux extraction command grep (Part 3)

Publish Date:2025/04/08 Author:JIYIK Category:OPERATING SYSTEM

This article follows up on Linux extraction command grep (I) and Linux extraction command grep (II) and continues to introduce the options of the grep command and its usage. Option 3 -i is case insensitive to the search string $ grep Mail /...

Full

Linux extraction command grep (Part 2)

Publish Date:2025/04/08 Author:JIYIK Category:OPERATING SYSTEM

This article follows up on Linux extraction command grep (Part 1) and continues to introduce the options and usage of the grep command. Option 2 In this group, we mainly introduce options to control grep output information. -m stops outputt...

Full

Linux extraction command grep (I)

Publish Date:2025/04/08 Author:JIYIK Category:OPERATING SYSTEM

Grep is a frequently used command in Linux. Like the cut command, it is a member of the pipeline command. Its function is to analyze a line of data and extract the data we want from the analyzed data. It is equivalent to a search function....

Full

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Hottest

Tags

Scan the Code
Easier Access Tutorial