JIYIK CN >

Current Location:Home > Learning > DATABASE >

All

Zerofill usage, advantages and alternatives in MySQL

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

In this article we will understand the uses, advantages and alternatives of ZEROFILL attribute in MySQL. Use and benefits of the ZEROFILL attribute in MySQL The benefit of using the ZEROFILL attribute is that it has nothing to do with input...

Full

Changing max_allowed_packet Size in MySQL Server

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

This article explains how to change the max_allowed_packet size in MySQL server. To understand this, we will use two operating systems, Windows 10 and Linux (Ubuntu). Changing max_allowed_packet Size in MySQL Server If we try to upload a fi...

Full

Using CURRENT_TIMESTAMP as a default value in MySQL

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

This article teaches you how to use as 5.6.5 in MySQL versions lower than . Thus, you can prevent MySQL error 1293. CURRENT_TIMESTAMP DEFAULT Our approach involves reordering table columns and using DEFAULT 0 and time values. Reproduce the...

Full

Changing MySQL root password on Mac

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

This article teaches you how to change the MySQL user password on OS X. root We will be using XAMPP so that you can change the password using the MySQL console. Installing XAMPP for OSX First, download and install XAMPP for OSX from Apache...

Full

Generate a random and unique string in MySQL

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

Today, we will learn to use various functions in MySQL to generate random and unique strings. These functions include MD5() , RAND() , , SUBSTR() and UUID() . There is no inbuilt method to generate random string in MySQL, but there are many...

Full

Loop PHP MySQLi Get Array Function

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

MySQLi fetch function is used to access data from the database server. After fetching the data, you can also iterate over it MySQLi with queries. In this article, we will see mysqli_fetch_array() the use of functions and methods to iterate...

Full

MySQL using LIKE in case insensitive search

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

This tutorial article will show you how to use LIKE the operator to search a column. We will show you how to use it correctly to include all results that meet certain criteria, regardless of whether the value is uppercase or lowercase. LIKE...

Full

Deleting using Join in MySQL

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

This tutorial article will show you how to use MySQL JOIN methods to delete data from multiple tables. This is useful when you are simultaneously deleting records from one table that are related to a specific record in another table. DELETE...

Full

INTERSECT Operator in MySQL

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

This article will help you understand INTERSECT the operator. Although MySQL does not support INTERSECT and MINUS / EXCEPT , there are other ways to simulate this functionality. We will see INTERSECT what is , its benefits, and learn variou...

Full

Subtraction in MySQL

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

MINUS Operator is used in SQL to find unique elements in table A that are not present in table B. Through this tutorial, we will see how to emulate the operator in MySQL MINUS to get the desired result. We will understand it by using NOT IN...

Full

Using variables in PostgreSQL

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

This article will demonstrate how we can declare and assign values ​​to variables in PostgreSQL. In PostgreSQL, DECLARE variables are declared using Often you will need variables in your PL/SQL scripts. In DECLARE the section called , y...

Full

Using NOT IN with subqueries in PostgreSQL

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

NOT IN The inverts the result of NOT simply using IN the operator. NOT IN The right side of the operator must have a subquery in which multiple columns are returned to check whether the expression matches the data. NOT IN Tends to return tr...

Full

Using CASE in PostgreSQL

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

This article shows how to use the statement in PostgreSQL CASE . CASE How to use the statement in PostgreSQL case Statements are similar to those in general-purpose programming languages if-else . But in SQL, if you want to write IF-ELSE ,...

Full

Joining columns using Select in PostgreSQL

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

MySQL PostgreSQL is an object-relational database system, which means it can support more complex data types than its competitors . Today we will learn how to use SELECT the operator to join the columns of a table. Using operators to || joi...

Full

Single query to rename and change column type in PostgreSQL

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

This article describes how to rename a column and change its type in PostgreSQL using only a single query. Renaming and changing column types in MySQL In MySQL , if you want to change the column type and rename it, you can use a simple stat...

Full

Scan to Read All Tech Tutorials

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

Hottest

Tags

Scan the Code
Easier Access Tutorial