current location:Home>Technical Articles>Database
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- Tips for Working with Complex Normalized Databases
- We’ve all been taught the benefits of normalizing our data. So I won’t bore you with those details, but to sum it up: Normalization is the process of organizing data in a database. It includes creating tables and establishing relationships between
- Mysql Tutorial 806 2024-08-09 12:01:32
-
- Installing Apache, PHP, and MySQL on Oracle Linux 8
- Bismillah... Instructions to Install Apache, PHP, and MySQL on Oracle Linux 8 Install Apache Web Server sudo yum install -y httpd Installs the Apache HTTP server. Enable and Start Apache sudo systemctl enable httpd
- Mysql Tutorial 843 2024-08-09 00:08:12
-
- Build a Database Schema In teps
- How to Build a Database Schema A database schema is a crucial component in database design that defines the structure, organization, and relationships of data within a database. Let's break this down into steps and create a simple example to illust
- Mysql Tutorial 195 2024-08-08 12:54:42
-
- Unlock MySQL Performance: Mastering Query Cache Optimization
- What is the Query Cache? The Query Cache is a feature in MySQL designed to boost database performance by caching the results of SELECT queries. When a query that's been executed before is run again, MySQL can quickly pull the result from this c
- Mysql Tutorial 826 2024-08-08 00:24:53
-
- Essential MtSQL Selected Practice Questions with Answers
- Table Names and Fields(MySQL) Student Table Student(s_id, s_name, s_birth, s_sex) Student ID, Student Name, Date of Birth, Student Gender Course Table Course(c_id, c_name, t_id) Course ID, Course Name, Teacher ID Teacher Table Teacher(t_id, t
- Mysql Tutorial 349 2024-08-07 20:40:40
-
- Using MySQL in a Docker Container for your Projects
- I am a firm believer of keeping my host system clean. And Docker containers are the perfect solution to this. Let's say you are working on a React app with a Node / Express backend and a MySQL server for your DB needs. Typically, you would install my
- Mysql Tutorial 329 2024-08-07 09:06:31
-
- Essential MySQL Selected Practice Questions with Answers
- Table Names and Fields(MySQL) Student Table Student(s_id, s_name, s_birth, s_sex) Student ID, Student Name, Date of Birth, Student Gender Course Table Course(c_id, c_name, t_id) Course ID, Course Name, Teacher ID Teacher Table Teacher(t_id, t
- Mysql Tutorial 929 2024-08-05 21:00:20
-
- Utilizing MySQL Wildcards: LIKE and FULLTEXT
- MySQL wildcards offer powerful ways to perform flexible searches. This article outlines the basics of using LIKE and FULLTEXT wildcards in MySQL. Examples of MySQL Wildcards LIKE Wildcard SELECT * FROM [your_table] WHERE [your_column]
- Mysql Tutorial 253 2024-08-05 20:11:12
-
- How to check the MySQL version on Windows, so easy that even a five-year-old can learn it
- Contents Why do you need to know your MySQL version? Check the MySQL Version From the Command Line From the MySQL Client SELECT VERSION Statement STATUS Command SHOW VARIABLES LIKE Statement Why do you need to know
- Mysql Tutorial 913 2024-08-05 14:39:21
-
- Using secure_file_priv to Prevent Illicit MySQL Uploads
- Securing file uploads in MySQL is critical. The secure_file_priv setting helps prevent unauthorized uploads. This article provides an overview of its importance and usage. Examples of secure_file_priv secure_file_priv defines a secure dir
- Mysql Tutorial 884 2024-08-01 18:25:21
-
- How MySQL Tuning Improves the Laravel Performance
- MySQL Configuration tuning is an important component of database management implemented by database professionals and administrators. It aims to configure the database to suit its hardware and workload. But beyond the database management sphere, the
- Mysql Tutorial 389 2024-07-29 20:33:03
-
- Books on SQL Language that you should read
- In today's #I Want to Read series, we will discover 20 quality books to learn SQL Language. They are used for various SQL databases, such as: MySQL, MariaDB, Oracle, Microsoft SQL Server and others! Let's get to the list! 01. Intro
- Mysql Tutorial 223 2024-07-29 06:45:23
-
- Setting Up a PHP Website on ECith Nginx, MySQL, PHP, and Git
- This guide will walk you through the process of setting up a PHP website on an Amazon EC2 instance using Nginx as the web server, MySQL as the database, PHP for server-side scripting, and Git for version control. We'll cover everything from initial s
- Mysql Tutorial 887 2024-07-28 14:49:33
-
- Finding Specific Data Across All Tables in PostgreSQL and MySQL
- When working with large databases, you may find yourself needing to locate a specific value across multiple tables and columns. This can be a challenging task, especially if you don't know exactly where to look. Fortunately, there are ways to automat
- Mysql Tutorial 818 2024-07-26 19:29:23
-
- An Introduction to SQL Stored Procedures
- SQL stored procedures simplify repetitive tasks and enhance database performance. This article introduces you to stored procedures, their creation, and usage. SQL Stored Procedures Here's a simple MySQL stored procedure example. CREATE
- Mysql Tutorial 993 2024-07-25 19:38:14