Product Association using SQL | Market Basket Analysis using SQL | Product Recommendation using SQL

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

КОМЕНТАРІ • 15

  • @user-cy3zq7pn3u
    @user-cy3zq7pn3u Рік тому +1

    Beautifully articulated and illustrated, Thank you

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

      Thanks a lot :)

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

    Superb and simple explanation

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

    Thanks. That's helpful.
    Quick question: what would be the difference between a.order_item_id < b.order_item_Id and a.order_item_id > b.order_item_Id ? I keep getting different results for both rules. I would expected that both a.order_item_id < b.order_item_Id or a.order_item_id > b.order_item_Id would give the same result.

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

      This would give you the same number of records however the order might be different depending on if you less "".
      Consider this example. we have two records
      prod_id1 prod_id2
      1 2
      2 1
      if you use < operator, the output count is 1 and the output is
      prod_id1 prod_id2
      1 2
      iif you use > operator, the output count is 1 and the output is
      prod_id1 prod_id2
      2 1

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

    Thank you for the explanation!

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

    Thanks for the help

  • @andrefreitas1572
    @andrefreitas1572 2 роки тому

    Useful. Thank you

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

    which one is video of this video next part continued

  • @entertainmenteditz4428
    @entertainmenteditz4428 5 місяців тому +1

    Will u give access for this connection as a user

    • @TechCoach
      @TechCoach  5 місяців тому

      Unfortunately I don't have this DB up now.

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

    Hi, can you share the solution for the problem statement discussed at the end of the video.

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

    Hi Vivek
    I have a question
    I have 200 packages in that many procedures and functions are there.If some error occurred in that how can I find the package name and procedure and line number?? I said we can go with backtrace is there any alternative solution..
    Thanks in advance

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

      So we have different jobs that will call these packages, our starting point will be identifying the job that has failed, then we will check what packages were being called by it, A well designed project will also have a log for the job which will capture the ORA error or what exactly went wrong.
      So we will only look at things that are relevant to us