End to End Data Analytics Project (Python + SQL)

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ก.ย. 2024
  • In this video we will do an end to end data analytics project using python and SQL. We will use Kaggle API to download the dataset and to data processing and cleaning using pandas and load the data into sql server. Lastly we will answer some interesting questions using SQL.
    github link:
    github.com/ank...
    Data Analytics high quality content: www.namastesql...
    Zero to hero(Advance) SQL Aggregation:
    • All About SQL Aggregat...
    Most Asked Join Based Interview Question:
    • Most Asked SQL JOIN ba...
    Solving 4 Trick SQL problems:
    • Solving 4 Tricky SQL P...
    Data Analyst Spotify Case Study:
    • Data Analyst Spotify C...
    Top 10 SQL interview Questions:
    • Top 10 SQL interview Q...
    Interview Question based on FULL OUTER JOIN:
    • SQL Interview Question...
    Playlist to master SQL :
    • Complex SQL Questions ...
    Rank, Dense_Rank and Row_Number:
    • RANK, DENSE_RANK, ROW_...
    #sql #dataengineer #datanalysis #dataanalytics

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

  • @ankitbansal6
    @ankitbansal6  5 หลายเดือนก่อน +19

    Please like the video as it takes lots of effort to record these videos.
    Checkout my high quality data analytics courses :
    www.namastesql.com/

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

      Hi Ankit, can you please kindly help the below requirement.
      create table #temp ( DepartmentId int, Name varchar(255),Hiredate date,Sal float,Ruleid int)
      Insert into #temp (DepartmentId,Name,Hiredate,Sal) values ( 10,'Sai','2021-10-23',5500)
      Insert into #temp (DepartmentId,Name,Hiredate,Sal) values ( 10,'Sairam','1999-10-23',6000)
      Insert into #temp (DepartmentId,Name,Hiredate,Sal) values ( 10,'Saikrishna','2002-10-23',3000)
      Insert into #temp (DepartmentId,Name,Hiredate,Sal) values ( 10,'Sair','2021-10-23',5000)
      Insert into #temp (DepartmentId,Name,Hiredate,Sal) values ( 10,'Raj','2015-10-23',8000)
      Insert into #temp (DepartmentId,Name,Hiredate,Sal) values ( 10,'SRK','2021-10-23',5000)
      Create table #Rules (Departmentid int,Ruleid int, Condition Varchar(2000))
      Insert into #Rules values ( 10,1,'Name like ''Sai%''')
      Insert into #Rules values ( 10,2,'Hiredate >= ''2000-01-01''')
      Insert into #Rules values ( 10,3,'sal >= 5000')
      output
      Departmentid Name Hiredate sal ruleid
      10 Sai 10/23/2021 5500 2,10,30
      10 Sairam 10/23/1999 6000 2,30
      10 Saikrishna 10/23/2002 3000 2,10
      10 Sair 10/23/2021 5000 2,10,30
      10 Raj 10/23/2015 8000 10,30
      10 SRK 10/23/2021 5000 10,30

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

      DepartmentId is used to join #temp and #Rules.
      check each condition dynamically from #Rules against the corresponding rows in #temp.
      If a condition is satisfied, concatenate the Ruleid value from #Rules to the existing Ruleid in #temp

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

      ​@@revathigangisetty9065 send the problem on sql.namaste@gmail.com

    • @revathigangisetty9065
      @revathigangisetty9065 5 หลายเดือนก่อน

      @@ankitbansal6 i shared the details in the email ankit. its urgent requirement ankit please kindly help me. i will be eagerly waiting for your input.

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

      i shared the problem to you via email and tried multiple times but i didnot get the exact solution. please kindly help ankit

  • @jaybharat3949
    @jaybharat3949 4 หลายเดือนก่อน +6

    First of all, thank you very much for the project. But there’re couple of concerns which you may have overlooked -
    1. In every query where we’re doing analysis based on sales, I guess it’s better to consider sale_price*quantity as sales rather than sale_price only
    2. In the last problem, profit should have been taken into consideration rather than sale_price
    But again I’m repeating that, above are some modification we can make to get the best business answers, otherwise in the video you’ve shown the approach how to handle an end to end project - from that pov it’s absolutely fine. We students can make necessary changes.

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

      Thanks for the feedback. Appreciate it 🙂

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

      I have noticed same thing but overall good Video for learning

    • @KennethDarby-o3j
      @KennethDarby-o3j 11 วันที่ผ่านมา

      I assumed the sale_price is the result of this calculation, which would make the way he does it correct.

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

    You sir, are a wonderful teacher! I am currently learning Data Engineering. This video has enabled me to catch up and understand some core concenpts that I found challenging because I missed live classes. Thank you!

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

      Glad to help!

  • @HarshGupta-rn6db
    @HarshGupta-rn6db 5 หลายเดือนก่อน +6

    You are the torchbearer for many Ankit, trust me!
    Cheers!

  • @Abhilash_Jose
    @Abhilash_Jose 5 หลายเดือนก่อน +11

    Hi Ankit, You have made this video at the correct time, I was looking for something like this. Could you also make a project on end to end problems while loading data in CSV to MySQL. I recently had a issue where I was not able to fully load all the data , only partially even though I did null treatment. Please make a video on it and also post it in your LinkedIn once you have done it so i may get notified about it

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

    Great video! Loved the easy explanation of the full ETL process and data analysis. Keep up the good work!

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

      Jesus is the only way to healing, restoration and salvation to all souls. Please turn to him and he will change your life, depression into delight, soul heading from hell to heaven all because of what he did on the cross
      “Whoever calls upon the name of the Lord shall be saved” Romans 10:13

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

    I thoroughly enjoyed this video and followed along with you. Thanks for this. Please keep posting more of such end to end analysis problems. Thanks a ton for taking the effort to make these videos so that we keep learning :)

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

      More to come!

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

    Very Helpful video Ankit! Thanks a lot for the efforts you have put for creating this guided project. Looking forward for many more guided projects :)

  • @gunaravi6224
    @gunaravi6224 3 หลายเดือนก่อน

    Hello Ankit Sir, am a fresher and am looking forward to start my career in data analytics or data engineering field. This video is awesome and very helpful for me. Thank you so much for making the End ot End videos like this. And the way you explaining each and everything is very nice and clear. Keep it up Sir

    • @ankitbansal6
      @ankitbansal6  3 หลายเดือนก่อน

      Keep it up 👍

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

    Thanks Ankit for this wonderful end to end course,I have gone through it and cleared many of the doubts.

  • @himanshshakk3083
    @himanshshakk3083 3 หลายเดือนก่อน +11

    Bro I think you have done mistake in top 10 highest revenue generating products category you should use SUM(orders_quantity*selling_price) because sum of only selling price cannot produce the revenue it should be multipied by quantity

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

      While watching the video I also has thought the same. Could you please clarify it @ankitbansal6

  • @jeniyakulshreshtha7555
    @jeniyakulshreshtha7555 5 หลายเดือนก่อน

    Today only i was seraching for data analytics ..and just saw your vedio ...thank you so much..pls post more such content on data analytics and any course on this as well please 😊

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

    Thank you bro for the best explanation i’ve ever seen about this topic.

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

    Ankit bhai no words.. new things learned today..❤

    • @ankitbansal6
      @ankitbansal6  5 หลายเดือนก่อน

      Glad to know 😊

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

    Thank you ankit it's really helpfull.
    Can you make a practical video on A/B Testing plzz

  • @satishwalaki
    @satishwalaki 5 หลายเดือนก่อน

    This was really helpful as a beginner me. thanks a lot & we need more n more videos like this.

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

    Very nice video. Just a little doubt. In the last question we have to calculate subcategory with highest growth by profit but in the video highest growth by sales is calculated. So the one given in the video is right or not?

  • @ShekoniTaofeek
    @ShekoniTaofeek 3 หลายเดือนก่อน

    Thank you very much. Never believed I could really joy it as much as I did. I really really appreciate your effort

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

      Awesome 👍

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

    how do you document your findings. please make a video on how you put everything together for a portfolio showcasing your skills in python and sql

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

    Thankyou so much Ankit sir For this project👍

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

    Thank you so much!! You are the motivation and this is the first step for me!! It means a lot thank you so much Ankit🙏🙏

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

      Keep it up💪

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

    I liked the way you explained every query... Keep it up..

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

      Thank you so much 🙂

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

    Liked your video, I am from Australia.

    • @ankitbansal6
      @ankitbansal6  5 หลายเดือนก่อน

      Thanks for watching!

  • @Sudarshan-d7s
    @Sudarshan-d7s หลายเดือนก่อน

    Bhai tumne company ka experience karwa diya kaise kaam hota he ❤it man

  • @bodybuildingmotivation5438
    @bodybuildingmotivation5438 5 หลายเดือนก่อน

    really love this kind of content, please make more video like this.

  • @deviprasadgharpehai3315
    @deviprasadgharpehai3315 5 หลายเดือนก่อน

    Thanks a lot bhai love nd support from berhampur❤

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

    In the last question of sql
    Should we calculate growth by profit change or sale change because the question is for profit change
    Also in total revenue quantity of each order is not included

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

    with t1 as (select month(order_date) as month1,sum(sale_price) as sales1 from orders where year(order_date)=2022 group by 1),
    t2 as
    (select month(order_date) as month2,sum(sale_price) as sales2 from orders where year(order_date)=2023 group by 1)
    select month1 as months,sales1 as 22sales, sales2 as 23sales from t1 inner join t2 on t1.month1=t2.month2 order by 1 asc;
    another way for the year on year query

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

    Thanks a lot Ankit for creating such an interesting project

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

      Glad you liked it

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

    thanks , i was waiting for this ....honestly

  • @bira-the_billi
    @bira-the_billi 4 หลายเดือนก่อน

    create table df_orders(
    [order_id] int primary key
    ,[order_date] date
    ,[ship_mode] varchar(20)
    ,[segment] varchar(20)
    ,[country] varchar(20)
    ,[city] varchar(20)
    ,[state] varchar(20)
    ,[postal_code] varchar(20)
    ,[region] varchar(20)
    ,[category] varchar(20)
    ,[sub_category] varchar(20)
    ,[product_id] varchar(50)
    ,[quantity] int
    ,[discount] decimal(7,2)
    ,[sale_price] decimal(7,2)
    ,[profit] decimal(7,2))

  • @brishtisaha4785
    @brishtisaha4785 5 หลายเดือนก่อน

    Sir please upload more SQL projects with datasets from kaggle.. Thank you for this..

  • @MayankGadiya-uq1el
    @MayankGadiya-uq1el 4 หลายเดือนก่อน

    "for each category which month had highest sales"
    above question has different output from your youtube video and sql queries that u have provided in sql file.

  • @ravitejatavva7396
    @ravitejatavva7396 5 หลายเดือนก่อน

    Wow, Appreciate your effort and work! 😍

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

      Thank you so much 😀

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

    Thanks for this awesome project.

  • @NigyAntony
    @NigyAntony 5 หลายเดือนก่อน

    Oh my God Amazing project

  • @abolisabne4887
    @abolisabne4887 5 หลายเดือนก่อน

    Thankyou so much for this Vedio Ankit.

  • @reddysekhar459
    @reddysekhar459 5 หลายเดือนก่อน

    Thank you so much for the video! great video👍

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

    Great video. Thanks for sharing

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

    Thank you very much. The explanation is very helpful.

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

      You are welcome!

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

    Sir when you solved the first question why didnt you multiplied the quantity column with the sale price?? For total revenue by product I'd?

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

      Yes, I think likewise. Revenue should have been qty*sale_price

  • @tarekmustafa2525
    @tarekmustafa2525 27 วันที่ผ่านมา

    Excellent tutorial, thank you!

    • @ankitbansal6
      @ankitbansal6  27 วันที่ผ่านมา

      You're very welcome!

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

    Thank You so much for your content

  • @rakeshkoli4384
    @rakeshkoli4384 5 หลายเดือนก่อน

    thanks bro and kindly make video on ETL process

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

    Very nice explanation. Thanks

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

    I'm 40 and I am trying to switch career to Data Analytics from a completely different background. I learned PowerBI + SQL. Can I get entry into this field with these two modules? Can I learn Python later have a good career? That is my plan over the next 5 years.

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

      Yes that works. Make sure your SQL is strong .

    • @sarihaddu
      @sarihaddu 5 หลายเดือนก่อน

      @@ankitbansal6 Definitely. I was recommended your channel for SQL by a youtuber and actually made a lot of progress in the past two months from your channel. Thanks is very small word for the effort you put into your content. But Thanks anyways 👍😊

    • @akbarkhan-nq3xl
      @akbarkhan-nq3xl 4 หลายเดือนก่อน

      Brother I'm 30 and trying to get into data analytics from the Mechanical domain.
      Many times I get frustrated and lose hope but your comment restored my faith in the process.
      I wish you all the best for your endeavours 👍.

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

    excelllent Sir

  • @shivakumar-ic9dh
    @shivakumar-ic9dh 2 หลายเดือนก่อน

    Simple and good explanation😊

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

      Thank you 🙂

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

    Superb explanation !!!

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

      Thank you 🙂

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

    cant't we direclty open csv file in python using read_csv no need of kaggle API

  • @navaneeth6414
    @navaneeth6414 5 หลายเดือนก่อน

    Hi Ankit, Wonderful Explanation. Can I have those DDL statement in SqL Server. Not able to find in Github

  • @rizwan1396
    @rizwan1396 24 วันที่ผ่านมา

    Great work sir , sir i have one problem im using mysql and for third questionsy output showing me only 2 rows for same query why is that

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

    great vedio

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

    Great content! thank you so much for sharing !

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

      Glad you enjoyed it!

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

      @@ankitbansal6 thanks to you i'm discovering a whole new level of sql with your constant use of cte and complex analysis, I will surely watch every single video in your channel

  • @gurutech7398
    @gurutech7398 5 หลายเดือนก่อน

    It's really great bro❤

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

    Anaconda3\lib\site-packages\sqlalchemy\exc.py", line 258 except Exception, e:
    how to fix sqlalchemy error?

    • @DA_Guy123
      @DA_Guy123 3 หลายเดือนก่อน

      Did you get the solution?😅

    • @MayureshRajendraKalbande
      @MayureshRajendraKalbande 3 หลายเดือนก่อน

      @@DA_Guy123 no but instead i inserted record using pandas - df_orders_table_create=("""create table if not exists df_orders( )
      cur.execute(df_orders_table_create)
      conn.commit()

  • @rahulagrawal622
    @rahulagrawal622 5 หลายเดือนก่อน

    Hi Ankit
    Can you please also show us
    How to add triggers
    To update the data every month on database
    Thanks

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

    Can't add the ODBC Sql Server even after having the MySQL that was installed for working on your SQL Course. I am getting an error message saying TEST FAILED. Can you please share any link that can help us to get that server name present in the list of servers available to connect or better a follow up video showing how to do it on your system. Thanks in advance

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

    Showing error in changing order date to datetime

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

    Excellent.

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

    Finallyy, thanks!

  • @WiseCoder-rp2zn
    @WiseCoder-rp2zn 4 หลายเดือนก่อน

    Good Video, Keep it up

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

    Thanks for the effort 🎉😂

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

    For first question, Don't we need to multiply sale_price with the quantity for revenue generated for each product?

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

      We can do that. I assumed it was total sales in the sale price.

    • @subodhthore6454
      @subodhthore6454 5 หลายเดือนก่อน

      @@ankitbansal6 ok sir

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

      same question. my answer is
      SELECT top 10 product_id, SUM(sale_price * quantity) AS total_revenue
      FROM df_order
      GROUP BY product_id
      ORDER BY total_revenue DESC;

  • @Ranidalvi-n3o
    @Ranidalvi-n3o หลายเดือนก่อน

    please share the link for Microsoft Sql server management studio installation.

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

    hey Ankit, great content, thanks fro the video! How did you obtain the list the columns names with the datatypes and memory allocation to create the new empty table?

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

      You can right click on the table name in the browser and choose create to

  • @PravinMane-el5fo
    @PravinMane-el5fo 4 หลายเดือนก่อน

    Nice one

  • @akashjha7277
    @akashjha7277 5 หลายเดือนก่อน

    Great video❤

  • @vijaypratap8173
    @vijaypratap8173 5 หลายเดือนก่อน

    Awesome😍😍😍😍

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

    Hi Ankit , What should I do If I don't see ODBC driver for SQL server in ODBC data source administrator ?

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

    Hello Ankit, all these queries can be made while using pandas library, can you tell why your made sql server database and used sql for queries?

  • @AKAK-nn5gy
    @AKAK-nn5gy 5 หลายเดือนก่อน

    You rock bro

  • @ShivamGupta-wn9mo
    @ShivamGupta-wn9mo 4 หลายเดือนก่อน

    brilliant

  • @ayat5483
    @ayat5483 3 หลายเดือนก่อน

    Brother, I am new to data science. I want to know which language will be good to learn data analysis? I have learned python, numpy and am currently learning panda.

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

    Hi Ankit, I am trying to connect and load the data to my local mysql workbench client. Continuously getting error. Any help?

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

    Hello and congratulations on the course! In the first part where I have to put the json file in the .kaggle file this is doesn't t seed to exist So what can I do?

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

      Create one folder

  • @sowmya6471
    @sowmya6471 5 หลายเดือนก่อน

    V useful

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

    Can you explain how to connect sql server on mac with jupytor

  • @ajaykumar8725
    @ajaykumar8725 18 วันที่ผ่านมา

    Thank you for the valuable content that i found so helpful for my profile .
    I have been going through a problem where after transforming the data in Jupyter and loading it to SSMS , the code runs in the notebook with no error but I can't find that data file in SSMS, can you clarify Please.
    Thanks.

    • @ankitbansal6
      @ankitbansal6  18 วันที่ผ่านมา

      You need to commit

  • @hamzazahidulislam3490
    @hamzazahidulislam3490 3 หลายเดือนก่อน

    Thank you so much

    • @ankitbansal6
      @ankitbansal6  3 หลายเดือนก่อน

      You're most welcome

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

    Hello Bhaiya!
    Thank You.
    If i need help in my career.Will you help me with your knowledge and experience?
    It would be very grateful of you.

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

    Hello Ankit when I am Importing date from python to SQL and running code in my Jupyter Notebook I am getting below error
    AttributeError: 'Connection' object has no attribute 'cursor'
    Please let me know

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

    Hi Ankit where can I can these type of queries to get hands on can you please tell

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

    Your a goat 🐐 in data filed sir

  • @g-ij9km
    @g-ij9km 5 หลายเดือนก่อน

    yaaaaaay!!

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

    We can use power bi

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

    How to load the data in to MySQL?

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

    How can I log into the MS SQL Server database when following along with a Mac, not Windows?
    I've installed Azure Data Studio but it seems the steps in connecting to the db engine are different.

    • @shreyagupta.1203
      @shreyagupta.1203 หลายเดือนก่อน

      Try this, when connecting to MS SQL Server in Azure Data Studio in Mac
      import pyodbc
      conn = pyodbc.connect('Driver={ODBC Driver 18 for SQL Server};'
      'Server=localhost;'
      'Database=master;'
      'UID=your username;'
      'PWD=your password;'
      'TrustServerCertificate=yes;')

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

    Hi Sir! I am not able to connect the SQL Server at 22:10. I have used the same syntax because the driver name is same still getting errors. Please help

    • @Hustler19
      @Hustler19 3 หลายเดือนก่อน

      Bro, I'm facing the same problem! do you have resolve it?

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

      @@Hustler19 hey were u able to solve this,m having same issue as well

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

    For the query to find each category which month has highest sales, you can do this as well in mysql which looks easier -
    with cte as
    (select category, sum(sale_price) as sales, date_format(order_date, '%m%Y') as order_month from df_orders group by category,order_month order by sales desc)
    select category, order_month, sales from cte c1 where sales = (select max(sales) from cte c2 where c1.category = c2.category);

  • @vijaypradeep8315
    @vijaypradeep8315 5 หลายเดือนก่อน

    bro can you show us an project where you have done the analysis in python why did you do that and store in s3 bucket and so on .Can you make an vedio on pyspark as well

  • @meghanagovindhu7358
    @meghanagovindhu7358 3 หลายเดือนก่อน

    Bro can you pls help me ! Download the dataset in vscode when it runs it show an error

  • @maduguyamini6805
    @maduguyamini6805 5 หลายเดือนก่อน

    Hi sir
    I have a doubt
    Top 5 highest selling products should be in terms of quantity right?

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

    after cleaning i.e., after droping those 3 columns, can we connect this jupyter notebook to mysql workbench??
    if yes, how do i that pls help me! if not, jst tell me the reason y it cant be connected to workbench.
    wht is difference b/w mysql workbench & Ms Sql server mngmt studio?

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

      You can connect to MySQL. Just change the connection string

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

    Hi all, i am not able to see my odbc drivers details for sql.can anybody please help me out

  • @srikrishnanr8155
    @srikrishnanr8155 5 หลายเดือนก่อน

    To insert or load data frames into sql what is the maximum number of rows that can be inserted

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

      Bro, there is no limitations.

  • @atharvkalambkar9869
    @atharvkalambkar9869 3 หลายเดือนก่อน

    can i use my pdf
    instead of kaggle

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

    ❤❤❤

  • @vivekbhatt7357
    @vivekbhatt7357 5 หลายเดือนก่อน

    Hello ankit i followed your video its great to learn . I have one scenario where i have two database one is postgrey and second mysql. what i need is there are 25 lakh product in mysql product table which has pricing and inventory which i want to update in postgrey database based on sku column which will be same. I used query and api its taking 4 to 5 hours to update can we do something with database to update pricing and inventory using procedure database to database. Please suggest

    • @ankitbansal6
      @ankitbansal6  5 หลายเดือนก่อน

      Using python you can move data from MySQL to postgres and then run update on postgres

  • @hritikapal683
    @hritikapal683 5 หลายเดือนก่อน

    Can we expect something related to cloud as well?

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

      Here you go
      th-cam.com/video/52CWagk3-jw/w-d-xo.html