I have two tables as seen below:
ITEM_DESCRIPTION
What I want to do is write a query where I can pull the ticket number and item but have the item show what it actually is instead of the item code. So far I have this:
SELECT
TICKET_NUMBER,
ITEM
FROM ORDER
Any help would be awesome!