AttributeError: 'str' object has no attribute 'values'
Their are few complex queries involving two tables , where I'm facing this issue even if the query is right .
The error is "AttributeError: 'str' object has no attribute 'values'"
The queries are: 1.SELECT a.actionid, c.conditionid, a.name AS action_name, c.conditiontype, c.operator, c.value, c.value2 FROM actions AS a CROSS JOIN conditions AS c; 2.SELECT actions.name, alerts.retries FROM actions JOIN alerts ON actions.actionid = alerts.actionid WHERE actions.status = '1' AND alerts.retries > '2'; 3.SELECT actions.name, alerts.retries FROM actions JOIN alerts ON actions.actionid = alerts.actionid WHERE actions.status = '1' AND alerts.retries > '2';
This issue has been marked as stale due to 280 days of inactivity. It will be closed in 4 weeks if no further activity occurs. If this issue is still relevant, please simply write any comment. Even if closed, you can still revive the issue at any time or discuss it on the [email protected] list. Thank you for your contributions.
This issue has been closed due to lack of activity. If you think that is incorrect, or the issue requires additional review, you can revive the issue at any time.