Learning with Jelly
Learning with Jelly
  • 139
  • 368 898
Navigating the AI Revolution: Creating a Data Literate Workforce (Ripple Summit 2024)
Here is a recording of my virtual talk given at the Ripple Summit hosted by WaveMakers (view information about the summit here: (www.wavemakers.io/blog/ripple-summit-agenda)
มุมมอง: 134

วีดีโอ

Basics of SQL in 10 Minutes: SQL 30 Day Challenge Day 30 (Final Recap)
มุมมอง 2334 หลายเดือนก่อน
You made it!!! Keep learning sql, this video gives you a quick recap of sql in ten minutes. Sign up for Github for FREE: github.com My medium site for blogs: medium.com/@angelica.spratley/crafting-your-path-to-a-tech-career-navigating-certifications-education-and-hands-on-projects-to-dade97795c5b Download SQLite Studio Here: sqlitestudio.pl/ Download the Chinook Database: www.sqlitetutorial.net...
Showcasing Your SQL Work: SQL 30 Day Challenge Day 29
มุมมอง 954 หลายเดือนก่อน
Be sure to use platforms like LinkedIn, Medium, Github and more to showcase your work. Save your query code as .sql files and get them uploaded for everyone to see! Sign up for Github for FREE: github.com My medium site for blogs: medium.com/@angelica.spratley/crafting-your-path-to-a-tech-career-navigating-certifications-education-and-hands-on-projects-to-dade97795c5b Download SQLite Studio Her...
SQL Practice Window Functions and CTES: SQL 30 Day Challenge Day 28
มุมมอง 1584 หลายเดือนก่อน
Three practice problems using common table expressions (CTEs) in SQL, window functions, and joins. Save your queries so you can showcase them in a project :) Download SQLite Studio Here: sqlitestudio.pl/ Download the Chinook Database: www.sqlitetutorial.net/sqlite-sample-database/ Link to Topic List: docs.google.com/document/d/1fcW2Frq4s-Fgr3OpRZtLxEf4ZXHD7wUQI8OrNM7vBA0/edit?usp=sharing Link t...
Practice SQL Mini Project: SQL 30 Day Challenge Day 27
มุมมอง 1254 หลายเดือนก่อน
Use this mini project scenario to practice aggregate functions, having clause, aliasing, joins, ordering data and more. Download SQLite Studio Here: sqlitestudio.pl/ Download the Chinook Database: www.sqlitetutorial.net/sqlite-sample-database/ Link to Topic List: docs.google.com/document/d/1fcW2Frq4s-Fgr3OpRZtLxEf4ZXHD7wUQI8OrNM7vBA0/edit?usp=sharing Link to Facebook Support Group: facebook.com...
Coalesce, Strftime, and More SQL Functions: SQL 30 Day Challenge Day 26
มุมมอง 1124 หลายเดือนก่อน
Learn coalesce function in sql (how to handle nulls), strftime function (formatting dates and times), the round function and more! There are tons of SQL functions so make sure you look at documentation. Download SQLite Studio Here: sqlitestudio.pl/ Download the Chinook Database: www.sqlitetutorial.net/sqlite-sample-database/ Link to Topic List: docs.google.com/document/d/1fcW2Frq4s-Fgr3OpRZtLxE...
CASE WHEN Statements in SQL: SQL 30 Day Challenge Day 25
มุมมอง 904 หลายเดือนก่อน
Learn conditional logic in SQL the great case when sql statements which are very similar to if then statements in many other languages. Love to use this to create new columns in sql. Download SQLite Studio Here: sqlitestudio.pl/ Download the Chinook Database: www.sqlitetutorial.net/sqlite-sample-database/ Link to Topic List: docs.google.com/document/d/1fcW2Frq4s-Fgr3OpRZtLxEf4ZXHD7wUQI8OrNM7vBA...
Practice Window and String Functions in SQL: SQL 30 Day Challenge Day 24
มุมมอง 814 หลายเดือนก่อน
Practice three problems that use window and string functions in sql. Download SQLite Studio Here: sqlitestudio.pl/ Download the Chinook Database: www.sqlitetutorial.net/sqlite-sample-database/ Link to Topic List: docs.google.com/document/d/1fcW2Frq4s-Fgr3OpRZtLxEf4ZXHD7wUQI8OrNM7vBA0/edit?usp=sharing Link to Facebook Support Group: groups/767988395118964/ Link to my Data Etsy Shop ...
String Functions in SQL: SQL 30 Day Challenge Day 23
มุมมอง 794 หลายเดือนก่อน
Learn how to standardize and clean up text columns in sql. Learn the length function in sql, the upper function in sql, the lower function in sql, the substr (substring) function in sql, and the trim function. Look at sqlite documentation online for more functions :) Download SQLite Studio Here: sqlitestudio.pl/ Download the Chinook Database: www.sqlitetutorial.net/sqlite-sample-database/ Link ...
Window Functions in SQL (Part 2): SQL 30 Day Challenge Day 22
มุมมอง 1104 หลายเดือนก่อน
Window functions retain row-level detail and can be used for calculating rate of change, running totals, and more. Learn row_number() in sql, rank() in sql, dense_rank() in sql, and lag() in sql. Download SQLite Studio Here: sqlitestudio.pl/ Download the Chinook Database: www.sqlitetutorial.net/sqlite-sample-database/ Link to Topic List: docs.google.com/document/d/1fcW2Frq4s-Fgr3OpRZtLxEf4ZXHD7...
Window Functions in SQL (Part 1): SQL 30 Day Challenge Day 21
มุมมอง 1924 หลายเดือนก่อน
Window functions allows us to retain row level detail in SQL and do calculations such as running totals. This video shows the difference between window functions and group bys and introduces the row_number sql function to you. Download SQLite Studio Here: sqlitestudio.pl/ Download the Chinook Database: www.sqlitetutorial.net/sqlite-sample-database/ Link to Topic List: docs.google.com/document/d...
Practice Common Table Expressions (CTES): SQL 30 Day Challenge Day 20
มุมมอง 2184 หลายเดือนก่อน
Practice using common table expressions (CTEs) in SQL using the www.sql-practice.com online editor. After practicing CTEs try to get the same results using sql joins or sql subqueries. Questions: Select ALL Product Names & their Category Names Select CustomerID and Each Customers Number or Orders. Select the ProductName and the TOTAL Number of Orders for Each Product (only return products that ...
Common Table Expressions (CTEs) in SQL: SQL 30 Day Challenge Day 19
มุมมอง 1514 หลายเดือนก่อน
Learn how to create temporary tables that can limit the use of SQL subqueries (and make your life easier) This is just an intro feel free to practice more CTEs online (they are very important) Questions: /* Use a CTE to calculate the average track length per album */ with tracklength as ( select AlbumId, AVG(Milliseconds) as AvgTrackLength from tracks group by AlbumId ) select al.Title, trackle...
SET Operators in SQL: SQL 30 Day Challenge Day 18
มุมมอง 1004 หลายเดือนก่อน
Learn set operators like union, union all, except, and intersect in SQL. Similar to joins except you are combining two queries into one result set. Just be familiar with set operators. Download SQLite Studio Here: sqlitestudio.pl/ Download the Chinook Database: www.sqlitetutorial.net/sqlite-sample-database/ Link to Topic List: docs.google.com/document/d/1fcW2Frq4s-Fgr3OpRZtLxEf4ZXHD7wUQI8OrNM7v...
Practice JOINS in SQL: SQL 30 Day Challenge Day 17
มุมมอง 2034 หลายเดือนก่อน
Day 17 we are going to practice joins with 3 questions to get more hands on practice with inner joins, joining two tables in SQL, and joining three tables in SQL. Practice, practice, practice your SQL joins. Video Questions: /* Question 1: Retrieve the names of all tracks along with each track’s genre name */ /* Question 2: Retrieve the names of ALL tracks from the album “Let There Be Rock” */ ...
Subqueries in SQL: SQL 30 Day Challenge Day 16
มุมมอง 2064 หลายเดือนก่อน
Subqueries in SQL: SQL 30 Day Challenge Day 16
JOINS in SQL Part Two: SQL 30 Day Challenge Day 15
มุมมอง 1885 หลายเดือนก่อน
JOINS in SQL Part Two: SQL 30 Day Challenge Day 15
Intro to JOINS in SQL: SQL 30 Day Challenge Day 14
มุมมอง 2275 หลายเดือนก่อน
Intro to JOINS in SQL: SQL 30 Day Challenge Day 14
SECOND MINI PROJECT IN SQL: SQL 30 Day Challenge Day 13
มุมมอง 2285 หลายเดือนก่อน
SECOND MINI PROJECT IN SQL: SQL 30 Day Challenge Day 13
GROUP BY and HAVING CLAUSE IN SQL: SQL 30 Day Challenge Day 12
มุมมอง 1615 หลายเดือนก่อน
GROUP BY and HAVING CLAUSE IN SQL: SQL 30 Day Challenge Day 12
Aggregate Functions in SQL: SQL 30 Day Challenge Day 11
มุมมอง 2545 หลายเดือนก่อน
Aggregate Functions in SQL: SQL 30 Day Challenge Day 11
UPDATE, DELETE FROM, ALTER TABLE SQL Commands: SQL 30 Day Challenge Day 10
มุมมอง 2575 หลายเดือนก่อน
UPDATE, DELETE FROM, ALTER TABLE SQL Commands: SQL 30 Day Challenge Day 10
ORDER BY Clause in SQL: SQL 30 Day Challenge Day 9
มุมมอง 1495 หลายเดือนก่อน
ORDER BY Clause in SQL: SQL 30 Day Challenge Day 9
WHERE Clause in SQL: SQL 30 Day Challenge Day 8
มุมมอง 2165 หลายเดือนก่อน
WHERE Clause in SQL: SQL 30 Day Challenge Day 8
Mini SQL Project for Creating Tables: SQL 30 Day Challenge Day 7
มุมมอง 2545 หลายเดือนก่อน
Mini SQL Project for Creating Tables: SQL 30 Day Challenge Day 7
SELECT Clause in SQL: SQL 30 Day Challenge Day 6
มุมมอง 2285 หลายเดือนก่อน
SELECT Clause in SQL: SQL 30 Day Challenge Day 6
Creating Tables in SQL: SQL 30 Day Challenge Day 5
มุมมอง 3465 หลายเดือนก่อน
Creating Tables in SQL: SQL 30 Day Challenge Day 5
Using and Exploring SQL Databases: SQL 30 Day Challenge Day 4
มุมมอง 4025 หลายเดือนก่อน
Using and Exploring SQL Databases: SQL 30 Day Challenge Day 4
Intro to SQL Syntax: SQL 30 Day Challenge Day 3
มุมมอง 5455 หลายเดือนก่อน
Intro to SQL Syntax: SQL 30 Day Challenge Day 3
Download SQLite Studio: SQL 30 Day Challenge Day 2
มุมมอง 6325 หลายเดือนก่อน
Download SQLite Studio: SQL 30 Day Challenge Day 2

ความคิดเห็น

  • @saadalhumaid3959
    @saadalhumaid3959 6 วันที่ผ่านมา

    Thanks. This is very helpful, informative and concise

    • @learningwithjelly
      @learningwithjelly 18 ชั่วโมงที่ผ่านมา

      You are very welcome

  • @Oluwadara-g5u
    @Oluwadara-g5u 11 วันที่ผ่านมา

    Trying to practice using the Cars dataset, but I receive an error message saying it cannot be opened because it does not contain any columns. Any advice for this?

    • @learningwithjelly
      @learningwithjelly 18 ชั่วโมงที่ผ่านมา

      Hmm make sure you are reading in sashelp.cars and that you don't have a data steps that overwrote data sets ....refresh the interface and see what happens

  • @kienquocnguyen9638
    @kienquocnguyen9638 11 วันที่ผ่านมา

    thank you !

  • @OfficialErnestOsayamen
    @OfficialErnestOsayamen 14 วันที่ผ่านมา

    I will buy this video over and over again. I understood you better than my college teacher, just 2 hours, i learnt better than the 8 weeks spent in college to learn sas fundamental. pls is there sas advance?

    • @learningwithjelly
      @learningwithjelly 12 วันที่ผ่านมา

      Thank you for the kind words. I may do a two hour SAS Advance course that's a good idea

    • @OfficialErnestOsayamen
      @OfficialErnestOsayamen 9 วันที่ผ่านมา

      @@learningwithjelly i am interested in SAS advance. how do i get the video?

  • @taneshiayjohnson7955
    @taneshiayjohnson7955 16 วันที่ผ่านมา

    Good day, Do you have an idea of any reputable courses that provide certification for SAS ? Thank you

    • @learningwithjelly
      @learningwithjelly 12 วันที่ผ่านมา

      I'm not familiar with courses with built in SAS certifications. You have to go through SAS themselves and sit for a certification. If I come across great start to finish training I will let my audience know.

  • @emransnake
    @emransnake 22 วันที่ผ่านมา

    I bought 2 courses on Udemy. They suck! lol. Yours is so clear and to the point. Thank you!

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

    I am also not able to create a new data base. I have no green plus sign to add and I also cant create new through the folder..

    • @learningwithjelly
      @learningwithjelly 22 วันที่ผ่านมา

      In the video description join the Facebook group there is troubleshooting advice on this that we can walk you through.

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

    One of the best teachers!! Very amazing in explaining!!

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

    This is the best intro to SQL by far!!

  • @nicolebishop2947
    @nicolebishop2947 28 วันที่ผ่านมา

    thank you sooo much for this video. It's helped me understand SAS better than my professor has :)

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

      So happy to hear that you understand more

  • @KevinGershy-DametVargas
    @KevinGershy-DametVargas 29 วันที่ผ่านมา

    Thank you! Very useful video

  • @derejeduressa1779
    @derejeduressa1779 29 วันที่ผ่านมา

    Thank you so much❤

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

    Hey wanted to know, if SAS entry level jobs are available in USA

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

    I have no idea how Perplexity recommended me your video considering it has less views, but you have done a great work. Now I am curious on how did Perplexity thought of recommending your video

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

    This is exactly the level a simpleton like me needs. Thank you so much!

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

    Thanks Jelly~ I have a question. Do you know how to run a logistic regression with instrumental variable in SAS ? It seems like we could use "proc qlim" ? Yet, I still do not know how to specify the model statement...Are the following codes correct ? Proc Qlim; model Y=X1 control variable /discrete(d=logit) ; model X1 = IV control variable ; Run; Thanks again.

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

    Your videos are amazing. I really like it. I am a new subscriber to your channel. Can I talk with you Jelly?

    • @learningwithjelly
      @learningwithjelly 22 วันที่ผ่านมา

      Thank you so much. If you have a specific question drop it in the comments :)

    • @anikdasdigital
      @anikdasdigital 22 วันที่ผ่านมา

      @@learningwithjelly Did u hired anyone?

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

    Nice work sis ... workin' on my phd and need to know statistics coding in SAS. Well recorded and well taught videos. Thanks!

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

    Can I get all materials for all PROC statements including PROC SQL ?

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

    Thank you Jelly, I am a new student in the US and your videos help me a lot.

  • @DaltonBen-e5m
    @DaltonBen-e5m หลายเดือนก่อน

    03834 Gleason Rapids

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

    Thank you for this intro video. It was easy to follow and your teaching style kept me engaged. I usually tune out of lectures after a while.

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

    Thanks a lot for the video and the links!

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

    Appreciated! Very well explained

  • @dantheman-adadwithchores4857
    @dantheman-adadwithchores4857 หลายเดือนก่อน

    I am using version SQLite Studion 3.4.4 - i don't use a semi-colon ";" at the end and it still seems to work.

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

    Your video is a life saver! thanks so much!

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

    great content, thank you

  • @dantheman-adadwithchores4857
    @dantheman-adadwithchores4857 หลายเดือนก่อน

    Thank you for this!

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

    I have an SQLite database with with a table called cc_results for the results of a cross country race. The tables have the following fields, team_code, first_name, last_name, gender, position, mark. I will like to write a query that will group the teams, sum the top3 positions for each team and rank the teams in ascending order. How can this be done?

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

    Where are full courses for this playlist.

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

    You are awesome. can you please if possible do SAS for generalized linear model, logistic regression, Nonparametric, Bayesian and mixed models.

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

      Thanks for the recommendations

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

    Thank you!

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

    Wow that is very great i love the content

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

    this video helped me land a job! thank you !

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

    Indeed, this is a very professional and good video! Great work!

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

    You didn't do non parametric test?😭😭😭i depend on you

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

      Haha lol I may add it to an upcoming SAS video thanks for the request

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

    thank you so much! I dont know what i would do without your tutorials!

  • @Hanhan-b7e
    @Hanhan-b7e 2 หลายเดือนก่อน

    Easy to understand, perfect for when you're bored on vacation❤

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

      Glad I can be a part of a vacation that's an honor!

  • @분할매수분할매도
    @분할매수분할매도 3 หลายเดือนก่อน

    Thank you so much Jelly for precise and detailed explanations on learning SAS Basic. I have been watching several SAS tutorial videos on TH-cam but your SAS tutorial videos are the BEST of the BEST. Let me recommend your youTube Channel for all my classmates who are having struggle from learning from classroom. I will also watch your Python videos together soon.. Thank you so much again for your time and effort to create these awesome tutorials.

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

      This warms my heart thank you so much

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

    Could you please do on deep learning projects with clinical imaging data analysis with examples

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

      Thanks for the recommendation deep learning in SAS won't be coming to my playlist anytime soon but I can add it to future goals

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

    Thank you Jelly. You are a great teacher.

  • @Uinfinite-r7n
    @Uinfinite-r7n 3 หลายเดือนก่อน

    TOP G - Jelly! May God bless you for this videos!

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

    I really love all 3 of these! I can't wait to see more of your videos.

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

      Thank you!!! So happy to read this

  • @Uinfinite-r7n
    @Uinfinite-r7n 3 หลายเดือนก่อน

    YOU are the GOAT of SAS! Thank you!

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

    HEllo Mam can I get sas studio free for learning?

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

      Yes just search sas ondemand for academics and sign up for free. Check out Video 1

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

    Thanks. I'm going to complete the course

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

    As someone with a short attention span... thank you! Great video!

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

    Excellent!

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

    Hi

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

    Thank-you for the explanation!