SELECT month, profit_loss, CASE SIGN(profit_loss) WHEN 1 THEN 'سود' WHEN -1 THEN 'زیان' ELSE 'بدون تغییر' END AS status FROM financial_data;