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.
Latihan ini adalah bagian dari kursus
Functions for Manipulating Data in PostgreSQL
Petunjuk latihan
- Select the film description and convert it to a
tsvectordata type.
Latihan interaktif praktis
Cobalah latihan ini dengan menyelesaikan kode contoh berikut.
-- Select the film description as a tsvector
SELECT ___(___)
FROM ___;