Where does the Media Library live in the database?
Select * from wp_posts where post_type=”attachment”; Will return all the entries in the Media Library. After the execution, you can export the result table as SQL, or CSV, or any other portable data format you like. Remember, if you are not sure if the entries already exist in your database, use the INSERT IGNORE statement … Read more