Magento 2 Database – Get Invoice Numbers from Order ID

databasemagento2

Hi I want to get the invoice numbers for a single order from database. How can i query for this? Which table store this invoice numbers?

Best Answer

Table: sales_invoice

SELECT increment_id FROM sales_invoice WHERE order_id = 9

where 9 is your order ID

Related Topic