SQLite for beginners: Full Text Search

Поділитися
Вставка
  • Опубліковано 11 гру 2024

КОМЕНТАРІ • 29

  • @nickang6647
    @nickang6647 Рік тому +7

    This is an amazing tutorial - I particularly liked the series of questions and answers format. Thanks James!

    • @cincoer
      @cincoer 4 місяці тому

      is it really tho?

  • @sinanerbezci3699
    @sinanerbezci3699 День тому

    Amazing tutorial. thank you

  • @MrThierriOliveira
    @MrThierriOliveira Рік тому +1

    Very high quality content. Congrats!

    • @cincoer
      @cincoer 4 місяці тому

      r u sur about that?

  • @StanleyStephen
    @StanleyStephen 2 місяці тому

    Oh just what I was looking for!

  • @joranmulderij
    @joranmulderij Рік тому

    Absolutely phenomenal series!

  • @nodidog
    @nodidog 7 місяців тому

    This is a fantastic explantation, thank you!

    • @cincoer
      @cincoer 4 місяці тому

      i dont think so

  • @DrJayTap
    @DrJayTap 3 місяці тому

    This helped a ton--thank you!

  • @PankajDoharey
    @PankajDoharey 2 місяці тому

    Great video thankyou.

  • @atimney
    @atimney 7 місяців тому

    Great video, very well explained

  • @eric0793
    @eric0793 Рік тому

    Really helpful for a biginner, thank you!

  • @abhaypatil9210
    @abhaypatil9210 11 місяців тому

    Awesome. Just Awesome!!

  • @mohamedhurab5045
    @mohamedhurab5045 6 місяців тому

    Thank you, Very helpful .

  • @shadygoat9146
    @shadygoat9146 Рік тому

    It would be quite nice to have ether a github or a pastebin with the sql written in this video!

  • @MVMaestro
    @MVMaestro Рік тому

    Awesome video!

  • @Cong_Le
    @Cong_Le Рік тому

    Thank you!

  • @hitori_dev
    @hitori_dev Рік тому

    Great video! Thanks

  • @antonioorsatti3270
    @antonioorsatti3270 Рік тому +6

    I was wondering, does that means the size of the db file is doubled?

  • @Promar22
    @Promar22 2 роки тому +1

    excellent video! I have some questions:
    Why do you have to perform a join operation between the virtual and original table if they are always set to be in sync after setting up the triggers? Could you not just query the virtual table directly?
    How does something like fts5 compare to lucene based search indexes? When would it make sense to use on over the other?

    • @klipronhoward
      @klipronhoward 2 роки тому +4

      I think the reason for the join is if you want additional information about the movies that are found in the search. For example the year of the movie wouldn't be included in the full text search table so you would be able to select that from the original table.

  • @kishanbsh
    @kishanbsh 10 місяців тому

    Does this MATCH do a fuzzy find ? How does the search work?

  • @boot-strapper
    @boot-strapper Рік тому

    im really wondering if you can have fts search across all tables. Like, in my case they are searching for d&d stuff, and wont necessarily know exactly what table to search. Would I want to make a table to has a relation to another table and a blob of text that is the search column?

  • @iMajed
    @iMajed Рік тому

    Thanks :)

  • @cincoer
    @cincoer 4 місяці тому

    Im starting to see red bruh you better stop aksing questions the yap is crazy

  • @baxiry.
    @baxiry. 8 місяців тому

    AWESOME!

  • @jonathanlarsson4608
    @jonathanlarsson4608 Рік тому

    I have a problem with getting a search function to work in my js file:
    const sql = "SELECT Journal.title AS Journal_title, Article.a_id, Article.title AS Article_title, Article.i_id AS Article_i_id, Article.au_id AS Article_au_id, Issue.number (SELECT GROUP_CONCAT(Author.name, '; ') FROM Journal.title INNER JOIN Issue ON Issue.j_id=Journal.j_id INNER JOIN Article ON Article.title=Journal.title INNER JOIN Author ON Author.au_id=Article.au_id) ORDER BY Issue FROM Article WHERE Author.name LIKE '%" + q + "%'";
    According to the command prompt, its a syntax error. What have I done wrong?