JIYIK CN >

Current Location:Home > Learning > DATABASE >

All

PHP performs CRUD operations on MySQL database

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

PHP performs CRUD operations on MySQL database

In this article, we will explore how to perform CRUD (Create, Read, Update, and Delete) operations using a MySQL database with PHP. If you want to get hands-on experience with database connections in PHP, this article is a good starting poi...

Full

How to replace a string using MySQL query

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

This is a very naive post, and the only reason for writing it is so that I won't forget the syntax and have to Google MySQL REPLACE the order of the arguments to the _ function again. And then when I try to look it up, I almost always end u...

Full

How to Change or Set MySQL Root Password

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

For each database, we should set root the or sa password to something other than the default unless we want to get hacked. For mysql, the system administrator user is called root. We will use the mysql mysqladmin utility from the command li...

Full

Speeding up our website using MySQL query cache

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

One of the best ways to speed up your Web application is to enable query caching in your database, which caches frequently used SQL queries in memory so that the next page that makes the same request is almost instantaneous. What makes this...

Full

How to back up a Kubernetes MySQL Operator cluster

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

Oracle's MySQL Operator for Kubernetes is a convenient way to automatically configure a MySQL database within a cluster. One of the key features of the Operator is the integrated automatic backup support for increased resiliency. The backup...

Full

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 many of these MySQL statement tags have you used?

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

In the article "A Peek into MySQL Stored Procedure Details" , we briefly introduced the use of stored procedures. The syntax for creating stored procedures includes BEGIN...END. In addition to BEGIN...END, the following statement tags can b...

Full

MySQL stored procedure details

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

A stored procedure can be thought of as encapsulating a SQL statement that we need to process specially into a function. When needed, we only need to call this function to achieve the desired operation. This process can be called a stored p...

Full

Two ways to install mysql-5.5.47 on Linux system and manage mysql

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

We know that there are generally two ways to install software on the Linux system. One is to use rpm or yum to install, which is convenient and fast; the other is to use the compiled source package. Although this method is more troublesome...

Full

Scan to Read All Tech Tutorials

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

Hottest

Tags

Scan the Code
Easier Access Tutorial