Im trying to change the value from the Merchant_Category_Code column.
I tried CASE Statement but didn't work.
CASE
WHEN MERCHANT_CATEGORY_CODE = 6051 THEN 'Quasi Cash–Merchant'
WHEN MERCHANT_CATEGORY_CODE = 4829 THEN 'Wire Transfer Money Orders & Money Transfer'
WHEN MERCHANT_CATEGORY_CODE = 6012 THEN 'Member Financial Institution–Merchandise And Services'
WHEN MERCHANT_CATEGORY_CODE = 6011 THEN 'Member Financial Institution–Automated Cash Disbursements'
WHEN MERCHANT_CATEGORY_CODE = 7372 THEN 'Computer Programming, Data Processing and Integrated System Design Services'
WHEN MERCHANT_CATEGORY_CODE = 5812 THEN 'Eating Places and Restaurants'
WHEN MERCHANT_CATEGORY_CODE = 5817 THEN 'Digital Goods: Applications (Excludes Games)'
WHEN MERCHANT_CATEGORY_CODE = 3010 THEN 'Royal Dutch Airlines (KLM Airlines)'
WHEN MERCHANT_CATEGORY_CODE = 3007 THEN 'Air France'
WHEN MERCHANT_CATEGORY_CODE = 5735 THEN 'Record Shops'
ELSE 'CHECK'
END AS MERCHANT_CATEGORY_CODE_DETAIL
Also,UPDATE but same result:
UPDATE "RED"."TRANSACTIONS"
SET MERCHANT_CATEGORY_CODE=3035
,MERCHANT_CATEGORY_CODE='TAP Air Portugal (TAP)';
Here the screenshot from the table I want to change values:
It doesn't make any sense to be attempting to assign string values to the
MERCHANT_CATEGORY_CODE
column given that it is some numeric type. Assuming you want to assign the description to a text column, you may update via aCASE
expression as follows: