Magento Magento 2 query to get all active shipping methods March 14, 2018 Pramod T P Leave a comment Following query will help you to get the active shipping methods in magento 2. select * from core_config_data where path like '%carr%' and path like '%active%' and value=1;