How to get filename from file path in MySQL?

How to get filename from file path in MySQL?

In this post we will give you information about How to get filename from file path in MySQL?. Hear we will give you detail about How to get filename from file path in MySQL?And how to use it also give you demo for it if it is necessary.

Sometimes we require to get filenames from path of table column in MySQL. If you are working on PHP then you can simply use basename() pre-define function of code PHP, But in MySQL you can’t use basename() in select query. This mysql function you can use in code PHP, PHP framework like laravel, codeigniter etc.

However, you can get simply filename or image name from path using SUBSTRING_INDEX() of MySQL. You can extract filename from path using substring_index(), substring_index() take three argument, first for column name, second for split string chat, and third get last element from split. So you can simply use. I am going to give you simply example for getting filenames from path or url.

In this example i have “categories” table with six columns i also added some dummy data on table as listed bellow :

categories table:

Ok, now i have image column with full path of image, we require only get name of image not path so run bellow mysql query using substring_index().

MySQL Query:

Also see:How to import CSV file using mysql

SELECT id, name, SUBSTRING_INDEX(image, '/', -1) FROM 'categories'

After this, you will see output like as bellow screen shot:

Output:

I hope it can help you….

Hope this code and post will helped you for implement How to get filename from file path in MySQL?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

  +  85  =  86

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US