MongoDB Complete Course in Tamil | 3 Hours

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 พ.ย. 2024

ความคิดเห็น • 41

  • @SathyaNaarayananS
    @SathyaNaarayananS 3 วันที่ผ่านมา

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

  • @RabiyathulAthabiyaS
    @RabiyathulAthabiyaS 5 หลายเดือนก่อน +8

    Successfully..completed today🎉❤Thanksome❤

  • @gajalakshmi947
    @gajalakshmi947 2 หลายเดือนก่อน +2

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

  • @stanlysprabhu
    @stanlysprabhu 4 หลายเดือนก่อน +3

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

    • @codewithkarthik
      @codewithkarthik  4 หลายเดือนก่อน +1

      You’re welcome ☺️

  • @tamilmotovloger6883
    @tamilmotovloger6883 4 หลายเดือนก่อน +3

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

  • @selvakumar_arumugam
    @selvakumar_arumugam 3 หลายเดือนก่อน +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  3 หลายเดือนก่อน

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

  • @mraj3612
    @mraj3612 หลายเดือนก่อน +1

    Python and Django video podunga brooo

  • @SivaSankar-m2v
    @SivaSankar-m2v 23 วันที่ผ่านมา +1

    Good work bro ❤

  • @harinimanoharan3795
    @harinimanoharan3795 2 หลายเดือนก่อน +3

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

  • @jaikrish50
    @jaikrish50 5 หลายเดือนก่อน +4

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

  • @smokemp4
    @smokemp4 5 หลายเดือนก่อน +3

    Thank you bro ❤

  • @Surendarkumar-nx1qb
    @Surendarkumar-nx1qb 4 หลายเดือนก่อน +2

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

    • @codewithkarthik
      @codewithkarthik  4 หลายเดือนก่อน

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

  • @ananthcmpunk7899
    @ananthcmpunk7899 4 หลายเดือนก่อน +2

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

  • @millioner_ones
    @millioner_ones 4 หลายเดือนก่อน +3

    vera level anna

  • @gajalakshmi947
    @gajalakshmi947 2 หลายเดือนก่อน +1

    please upload the python django video bro

  • @cibi_gaming
    @cibi_gaming 2 หลายเดือนก่อน +1

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

    • @codewithkarthik
      @codewithkarthik  2 หลายเดือนก่อน

      You can try studio 3t software

  • @aadhi4821
    @aadhi4821 2 หลายเดือนก่อน +1

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

    • @codewithkarthik
      @codewithkarthik  2 หลายเดือนก่อน

      For beginners it’s enough bro

  • @rees12334
    @rees12334 หลายเดือนก่อน +1

    Mongodb advanced concept enna bro

    • @codewithkarthik
      @codewithkarthik  หลายเดือนก่อน +1

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

  • @akashlesnar086
    @akashlesnar086 4 หลายเดือนก่อน +2

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

    • @codewithkarthik
      @codewithkarthik  4 หลายเดือนก่อน +1

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

    • @akashlesnar086
      @akashlesnar086 4 หลายเดือนก่อน

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

  • @S-M-SAKTHIVELOFFICIAL
    @S-M-SAKTHIVELOFFICIAL หลายเดือนก่อน +1

    bro i hve erorr what to do

    • @codewithkarthik
      @codewithkarthik  26 วันที่ผ่านมา

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

  • @geethadilipkumar-cw7mq
    @geethadilipkumar-cw7mq 3 หลายเดือนก่อน +1

  • @mraj3612
    @mraj3612 หลายเดือนก่อน +1

    Bro

  • @SathyaNaarayananS
    @SathyaNaarayananS 21 ชั่วโมงที่ผ่านมา

    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?