Get startedGet started for free

What is a tsvector?

You saw how to convert strings to tsvector and tsquery in the video and, in this exercise, we are going to dive deeper into what these functions actually return after converting a string to a tsvector. In this example, you will convert a text column from the film table to a tsvector and inspect the results. Understanding how full-text search works is the first step in more advanced machine learning and data science concepts like natural language processing.

This exercise is part of the course

Functions for Manipulating Data in PostgreSQL

View Course

Exercise instructions

  • Select the film description and convert it to a tsvector data type.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

-- Select the film description as a tsvector
SELECT ___(___)
FROM ___;
Edit and Run Code