Summary of MySQL LOAD_FILE() function method

Summary of MySQL LOAD_FILE() function method

In MySQL, the LOAD_FILE() function reads a file and returns its contents as a string.

grammar

LOAD_FILE(file_name)

Where file_name is the full path to the file.

Here is an example of me selecting content from a file:

SELECT LOAD_FILE('/data/test.txt') AS Result;

result:

+------------------------------------------+

| Result |

+------------------------------------------+

| This text is all that the file contains! |

+------------------------------------------+

An example of a database

Here is an example of a query that inserts the contents of a file into a database:

INSERT INTO MyTable (FileId, UserId, MyBlobColumn)

VALUES (1, 20, LOAD_FILE('/data/test.txt'));

In this example, the column MyBlobColumn has a BLOB data type (allowing it to store binary data).

Now that it is in the database, we can select it:

SELECT MyBlobColumn

FROM MyTable

WHERE UserId = 20;

result:

+------------------------------------------+

|MyBlobColumn|

+------------------------------------------+

| This text is all that the file contains! |

+------------------------------------------+

If the file does not exist, returns NULL:

SELECT LOAD_FILE('/data/oops.txt') AS Result;

result:

+--------+

| Result |

+--------+

| NULL |

+--------+

You may also be interested in:
  • Example of using go xorm to operate mysql
  • Mysql classic high-level/command line operation (quick) (recommended)
  • A brief discussion on the differences between the three major databases: Mysql, SqlServer, and Oracle
  • The use of mysql unique key in query and related issues
  • How to implement scheduled backup of MySQL database
  • Import backup between mysql database and oracle database
  • Detailed explanation of how a SQL statement is executed in MySQL
  • Detailed explanation of mysql download and installation process
  • MySQL 8.0.15 download and installation detailed tutorial is a must for novices!
  • Detailed explanation of how to migrate a MySQL database to another machine

<<:  JD Vue3 component library supports the detailed process of mini program development

>>:  Linux uses iftop to monitor network card traffic in real time

Recommend

What can I use to save you, my table (Haiyu Blog)

Tables once played a very important role in web p...

JavaScript method to detect the type of file

Table of contents 1. How to view the binary data ...

Getting Started Tutorial on Animating SVG Path Strokes Using CSS3

Without relying on JavaScript, pure CSS is used t...

Introduction to possible problems after installing Tomcat

1. Tomcat service is not open Enter localhost:808...

Docker file storage path, get container startup command operation

The container has already been created, how to kn...

202 Free High Quality XHTML Templates (1)

Here 123WORDPRESS.COM presents the first part of ...

Implementation steps for installing RocketMQ in docker

Table of contents 1. Retrieve the image 2. Create...

js returns to the previous page and refreshes the code

1. Javascript returns to the previous page history...

Detailed tutorial on installing MySQL database in Linux environment

1. Install the database 1) yum -y install mysql-s...

Common ways to optimize Docker image size

The Docker images we usually build are usually la...

Understanding of web design layout

<br />A contradiction arises. In small works...

Vue3+TypeScript encapsulates axios and implements request calls

No way, no way, it turns out that there are peopl...