MongoDB Complete Course in Tamil | 3 Hours

Поделиться
HTML-код
  • Опубликовано: 31 дек 2024

Комментарии • 45

  • @RabiyathulAthabiyaS
    @RabiyathulAthabiyaS 6 месяцев назад +9

    Successfully..completed today🎉❤Thanksome❤

  • @SathyaNaarayananS
    @SathyaNaarayananS Месяц назад +3

    Way of Teaching is really good. Thanks for sharing useful notes. :)

  • @anandayyappan6501
    @anandayyappan6501 День назад

    Thanks for the course brother

  • @asokanperara7376
    @asokanperara7376 27 дней назад

    The way you explain is really very good . keep it up good work

  • @stanlysprabhu
    @stanlysprabhu 6 месяцев назад +3

    good practical session bro. A neat presentation .. thanks.

  • @gajalakshmi947
    @gajalakshmi947 3 месяца назад +2

    Thanks you very much bro good teaching and once again thanks a Lot🙏🙏🙏🙏🙏

  • @SivaSankar-m2v
    @SivaSankar-m2v 2 месяца назад +1

    Good work bro ❤

  • @tamilmotovloger6883
    @tamilmotovloger6883 6 месяцев назад +3

    brother its very usefull for me, pls upload for mongoose also and compare with an mongodb, thankyou so much!!!!

  • @selvakumar_arumugam
    @selvakumar_arumugam 4 месяца назад +3

    Good work, but i feel font size needs to be larger or screen should be zoom. so easily can read. in ur latest video its good.

    • @codewithkarthik
      @codewithkarthik  4 месяца назад

      Thank you ☺️, on next time i will work on video quality

  • @smokemp4
    @smokemp4 6 месяцев назад +3

    Thank you bro ❤

  • @45-nilofernisha33
    @45-nilofernisha33 16 дней назад

    Super

  • @mraj3612
    @mraj3612 2 месяца назад +1

    Python and Django video podunga brooo

  • @harinimanoharan3795
    @harinimanoharan3795 4 месяца назад +3

    Express JS,React JS,Node JS videos pooduga anna ..

  • @millioner_ones
    @millioner_ones 5 месяцев назад +3

    vera level anna

  • @ananthcmpunk7899
    @ananthcmpunk7899 6 месяцев назад +3

    Mongodb ok node js & express js podunga appo than use aagum

  • @jaikrish50
    @jaikrish50 6 месяцев назад +4

    Next c,c++ python , javascript hum add panunga bro..

  • @Surendarkumar-nx1qb
    @Surendarkumar-nx1qb 5 месяцев назад +2

    Could you give for check the collection in the database what query we have to use?

    • @codewithkarthik
      @codewithkarthik  5 месяцев назад

      db.getCollectionNames() , if conditions change you can do the programming only it vary based on what tech stack you use

  • @aadhi4821
    @aadhi4821 3 месяца назад +1

    Awesome course bro ♥️ intha topics mattum cover panna podhum?!

  • @gajalakshmi947
    @gajalakshmi947 3 месяца назад +1

    please upload the python django video bro

  • @cibi_gaming
    @cibi_gaming 3 месяца назад +1

    Bro vs code la try pannalama ?
    Extension name sollunga bro ?

  • @S-M-SAKTHIVELOFFICIAL
    @S-M-SAKTHIVELOFFICIAL 2 месяца назад +1

    bro i hve erorr what to do

    • @codewithkarthik
      @codewithkarthik  2 месяца назад

      Kindly provide more details about the error you're facing so I can help.

  • @rees12334
    @rees12334 3 месяца назад +1

    Mongodb advanced concept enna bro

    • @codewithkarthik
      @codewithkarthik  3 месяца назад +1

      connecting MongoDB with any programming language to access the data from database

  • @akashlesnar086
    @akashlesnar086 6 месяцев назад +2

    Bro unghala Yepudi personal ha contact panna konjam doubts clear pannanum bro

    • @codewithkarthik
      @codewithkarthik  6 месяцев назад +1

      you can reach me on discord bro link available in video description itself.

    • @akashlesnar086
      @akashlesnar086 6 месяцев назад

      @@codewithkarthik bro unga Instagram id ku msge panniruken..

  • @geethadilipkumar-cw7mq
    @geethadilipkumar-cw7mq 4 месяца назад +1

  • @mraj3612
    @mraj3612 2 месяца назад +1

    Bro

  • @SathyaNaarayananS
    @SathyaNaarayananS Месяц назад

    Bro, I have a query, from your example i'm trying to concept "Many-To-Many" aggregation.
    From companies -> got Employee details with below,
    db.companies.aggregate([{$lookup:{from:'employees','localField':'_id',foreignField:'company_id',as:'Employees'}}]) --> I got the result
    Like wise, from this continuation I'm trying to get "profile" information for each empoyees using below query
    db.companies.aggregate([{$lookup:{from:'employees','localField':'_id',foreignField:'company_id',as:'Employees'}},{$unwind:"$employees"},{$lookup:{from:'profiles','localField':'employees._id',foreignField:'employee_id',as:'profileDetails'}}]) --> But not getting any result in this and no error. What would be the mistake here. Can help?