JIYIK CN >

Current Location:Home > Learning > DATABASE >

All

How to run MySQL on Kubernetes using Oracle's Operator

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

Kubernetes support for stateful applications has matured considerably over the past few years. It is now possible to co-locate your database within your cluster, allowing it to benefit from the same scalability as your other workloads. MySQ...

Full

Restoring a MySQL database from a backup file

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

There are many reasons why we would want to restore a database from a backup file... but we should also test it on a test server to make sure our database backup is working properly. The syntax is as follows: mysql -h hostname -u username -...

Full

How to export a CSV file from the MySQL command line

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

How to export a CSV file from the MySQL command line

Comma-separated value files ( CSV ) are a way to transfer data between applications. Databases such as MySQL and spreadsheet software such as Excel both support importing and exporting via CSV , so we can use CSV files to exchange data betw...

Full

Back up the MySQL database to a file

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

Backing up your database is a very important system administration task that should usually cron be run from a job at scheduled intervals. We will use mysqldump the dump utility that comes with mysql to dump the contents of the database to...

Full

Finding error logs in MySQL

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

In this article, we will learn how to find error logs in MySQL database. Businesses and organizations must have access to error files in MySQL as it helps them to evolve and strengthen their database management system through efficient quer...

Full

Check if string contains certain data in MySQL

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

In this article, we aim to explore different ways to check the strings contained in a MySQL table. We will introduce the following technologies in MySQL. INSTR function LOCATE function LIKE Operators Before we get started, however, we creat...

Full

Get column names in MySQL

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

In this article, we aim to explore how to get the column names of a specific table in MySQL database. Often, when working with data in MySQL, we tend to forget the column names of a particular table in the database and the data types of dif...

Full

Copying a table in MySQL

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

The purpose of this article is to explore different ways to create a copy of a table in MySQL. The source table is also called the table to be copied, and the target table is called the clone table, which can be from the same or a different...

Full

Rename columns in MySQL database

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

In this article, we aim to explore different ways to rename columns in MySQL. ALTER TABLE The command is mainly used to change the format of a given MySQL table. It can be used to add columns, change the data type within a column, delete co...

Full

Different ways to check if a row exists in a MySQL table

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

This article highlights different ways to check if a row exists in a MySQL table. We will use the EXISTS and NOT EXISTS operators. We can also use these two operators with IF() the function to get a meaningful message if a row (a record) is...

Full

Truncate all tables in Mysql

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

Today I will show you how to truncate all tables in Mysql. It is used when you want to delete the entire table TRUNCATE TABLE . TRUNCATE It is a type of DML statement, which means it cannot be rolled back once it is committed. There are two...

Full

Creating a Temporary Table in MySQL

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

In this article, we aim to explore different ways to create temporary tables in MySQL. One of the main features of temporary tables is that it helps in storing temporary data. This feature is enabled in MySQL 3.23 and later versions. These...

Full

Creating a table from CSV in MySQL

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

In this article, we aim to understand how to create a table from CSV in MySQL database. Businesses and organizations must quickly generate tables from large amounts of data. These organizations typically have large CSV files with large amou...

Full

Scan to Read All Tech Tutorials

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

Hottest

Tags

Scan the Code
Easier Access Tutorial