Premier Support, Seamless Experience — Connect with LexDeevoBot

Chat Now with LexDeevoBot

Feedback Feature Extraction (SQL + NLP)

SELECT
  deevo(feedback_id, 'what feature did the customer ask for?') AS requested_feature,
  COUNT(feedback_id)
FROM
  feedback_table
GROUP BY
  requested_feature;