Final answer:
To display the ship date for order 1006, use the SQL statement "SELECT Ship Date FROM Orders WHERE Order ID = 1006;". Adjust date formatting functions as required by the specific SQL dialect.
Step-by-step explanation:
The question relates to formulating an SQL query to display the ship date for a specific order from a database table. To retrieve the ship date for order 1006, the following SQL statement should be used:
SELECT Ship Date FROM Orders WHERE Order ID = 1006;
This SQL statement selects the ship date from the ORDERS table where the Order ID matches 1006. If the correct format of the date is crucial and the database stores date values in a standard format, you might need to use a function like DATE_FORMAT (in MySQL) or TO_CHAR (in Oracle) to convert the date to 'April 2, 2002' format, depending on the SQL dialect used.