How to Get Filename from File Path in MySQL Query?
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:
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....
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Create a REST API using Node.js and MySQL?
- PHP MySQL Image Gallery CRUD Example
- PHP MySQL Highcharts Chart Example
- PHP Import Excel File into MySQL Database Tutorial
- MySQL Query to Remove Special Characters from String
- How to Add MySQL Trigger from Migration in Laravel?
- How to Import CSV File using MySQL?
- How to fetch this week records in MySql ?
- How to Check Empty or Null Data using MySQL Query?
- How to Copy One Table Data into Another Table using MySQL?
- How to count unique domains from email address field in MySQL ?
- Mysql procedure with pagination in laravel?
- Which MySQL Datatype use for Store an IP Address?
- Mysql Hexadecimal Color Code Store in Binary Datatype Example