← Back to tutorials

Tutorial: Retrieve Reviews by Sentiment

Sample data: 1000_movie_reviews.csv

Visual Interface Track

  1. Open /app/ and configure credentials.
  2. Upload 1000_movie_reviews.csv.
  3. Run the SQL query below.
GesamtDB settings panel with connection configuration fields

Step 1: configure credentials and database settings.

GesamtDB data tab with file chooser and upload button

Step 2: choose 1000_movie_reviews.csv and upload it.

GesamtDB query tab with SQL editor and run button

Step 3: run the sentiment filter query in the SQL editor.

SELECT text, tag
FROM movie_reviews
WHERE AIFILTER(text, 'reviews with positive sentiment')
LIMIT 20;