
which data type is used to store video file in mysql databse?

You can use blob data type to save video files. but to do so you have to convert the video file into binary form on the server side and also save extension and file name in the same table Just like you have a table name Videos and its columns are Id(primary key), FileName(Varchar), FileExtention (varchar), FileContent(blob).