SQLite Databases With Python - Full Course

  Рет қаралды 657,307

freeCodeCamp.org

freeCodeCamp.org

Күн бұрын

In this course you’ll learn the basics of using SQLite3 with Python. SQLite is an easy-to-use database engine included with Python.
You’ll learn how to create databases and tables, add data, sort data, create reports, pull specific data, and more. For this course you should already have a basic knowledge of Python programming, but you don’t need to know anything at all about databases or SQLite.
💻Code: github.com/flatplanet/Intro-T...
🎥Course created by Codemy.com. Check out their KZbin channel: / codemycom
⭐️Course Contents ⭐️
⌨️ (0:00:00) What Is A Database
⌨️ (0:03:39) Install Python
⌨️ (0:07:07) Install Git Bash Terminal
⌨️ (0:11:52) Connect to Database in Python
⌨️ (0:17:39) Create A Table
⌨️ (0:28:13) Insert One Record Into Table
⌨️ (0:31:25) Insert Many Records Into Table
⌨️ (0:34:41) Query and Fetchall
⌨️ (0:37:02) Format Your Results
⌨️ (0:44:39) Primary Key
⌨️ (0:47:51) Use The Where Clause
⌨️ (0:51:17) Update Records
⌨️ (0:56:42) Delete Records
⌨️ (0:58:27) Order Results
⌨️ (1:01:37) And/Or
⌨️ (1:04:57) Limiting Results
⌨️ (1:07:27) Delete (Drop) A Table And Backups
⌨️ (1:09:14) Unit 18 Our App - Show All Function
⌨️ (1:14:16) Unit 19 Our App - Add A Record Function
⌨️ (1:17:51) Unit 20 Our App - Delete a Record Function
⌨️ (1:21:23) Unit 21 Our App - Add Many Records Function
⌨️ (1:24:57) Unit 22 Our App - Where Clause Function
--
Learn to code for free and get a developer job: www.freecodecamp.org
Read hundreds of articles on programming: freecodecamp.org/news
And subscribe so you don't miss any tutorials: kzbin.info_cent...

Пікірлер: 536
@redfordwilson5042
@redfordwilson5042 4 жыл бұрын
I didn't know Walter White was also skilled in programming. Cool!
@hellelo.5840
@hellelo.5840 3 жыл бұрын
I am the danger, Walter said while talking to his wife about hacking
@zl7289
@zl7289 3 жыл бұрын
This comment deserves more likes! 😂
@ShaileshKumar-fk8cu
@ShaileshKumar-fk8cu 3 жыл бұрын
Hahahahahahahaha
@ayushjadaun4964
@ayushjadaun4964 3 жыл бұрын
Maybe he is planning to hack Pentagon. This time
@CavanLeeSears
@CavanLeeSears 3 жыл бұрын
You'll notice that almost every skilled programmer is a bald be-speckled goatie (stubble too) wearing guy. Including myself. :)
@byleexs1991
@byleexs1991 Жыл бұрын
Cursors in sqlite3 python are objects that act as a pointer to the results of a query. They enable you to fetch, add, modify or delete data from a database. The cursor can also be used to traverse through the rows of a query result.
@Ricocase
@Ricocase 4 жыл бұрын
He already created a time outline of specific concepts in the video = instant upvote! Down-to-earth explanations > boss move!
@tymothylim6550
@tymothylim6550 3 жыл бұрын
Thank you John for this video! I watched the whole thing and it was really a well-planned lesson! This really helps me grasp the basics for sqlite3!
@espressoshot21
@espressoshot21 4 жыл бұрын
Thank you for this super helpful video! Keep up the awesome work. I've been really enjoying your courses on KZbin. You're such an awesome instructor!
@jimcallahan448
@jimcallahan448 2 жыл бұрын
Made sense to me, but that was because I already knew SQL and the SQLite command line. Might be easier to demonstrate SQLite command line and then ask what if we want to do this as part of a larger Python program? At the SQLite command line one can immediately demonstrate the newly created table with: SELECT customers *; If a student asks, why not do everything in SQL? Ask the student, "What if you want to graph the data?" SQL doesn't have matplotlib or even the tools to produce a formatted report. So, Python and SQL (SQLite) make a good team.
@vhoover3609
@vhoover3609 4 жыл бұрын
Hint: the print function accepts multiple arguments where each one is separated by a space when printed. I.e. print( item[0], item[1]) will print Jon Elders to the screen.
@myriamt6340
@myriamt6340 2 жыл бұрын
WALTER WHITE teaching me SQLITE, what a time to be alive :D
@WillNicholson
@WillNicholson Жыл бұрын
Thanks John, this was really helpful. Just want to note something I got hung up on; if you delete the last row in a table, that rowid will be REUSED when you add a new item to the table UNLESS you use the AUTOINCREMENT keyword. In other words, if the last rowid is 6, and you delete it (and all of that person's data)... then the last rowid is 5. But, if you add a new item, the new person's data will be added to a row that ALSO has the rowid of 6. This can cause issues when referencing data by rowid later on.
@pleabargain
@pleabargain 3 жыл бұрын
I worked through all of the code examples. Thank you! I have learned a lot!
@tzwacdastag8223
@tzwacdastag8223 4 жыл бұрын
⭐️Course Contents ⭐️ ⌨️ (0:00:00) What Is A Database ⌨️ (0:03:39) Install Python ⌨️ (0:07:07) Install Git Bash Terminal ⌨️ (0:11:52) Connect to Database in Python ⌨️ (0:17:39) Create A Table ⌨️ (0:28:13) Insert One Record Into Table ⌨️ (0:31:25) Insert Many Records Into Table ⌨️ (0:34:41) Query and Fetchall ⌨️ (0:37:02) Format Your Results ⌨️ (0:44:39) Primary Key ⌨️ (0:47:51) Use The Where Clause ⌨️ (0:51:17) Update Records ⌨️ (0:56:42) Delete Records ⌨️ (0:58:27) Order Results ⌨️ (1:01:37) And/Or ⌨️ (1:04:57) Limiting Results ⌨️ (1:07:27) Delete (Drop) A Table And Backups ⌨️ (1:09:14) Unit 18 Our App - Show All Function ⌨️ (1:14:16) Unit 19 Our App - Add A Record Function ⌨️ (1:17:51) Unit 20 Our App - Delete a Record Function ⌨️ (1:21:23) Unit 21 Our App - Add Many Records Function ⌨️ (1:24:57) Unit 22 Our App - Where Clause Function
@ferax4598
@ferax4598 Жыл бұрын
nice job copying the description
@uucea
@uucea 4 жыл бұрын
This is the type of channel that will mold the next Bill Gates Few of us watching will create something revolutionary
@marcus.the.younger
@marcus.the.younger 3 жыл бұрын
hopefully :)
@davidt01
@davidt01 2 жыл бұрын
Not sure if we want another one of him though.
@dimjim2365
@dimjim2365 Жыл бұрын
Wow, just wow. This is one superb course for beginners like myself. I followed the whole instructions and created an employees db. I reached a little far trying to incorporate nulls and blobs which caused me probs at the end. Ha. Had to drop back to the text and email demos but everything worked the first time after I corrected my typos. Ha. Thank you for a marvelous tutorial!
@ABMA79
@ABMA79 3 жыл бұрын
amazing course and productive. Thanks for the wonderful lesson. I have learned so many things in one hour from you. Expecting more amazing stuff like this in the future Thanks a lot
@dragonarch0
@dragonarch0 4 жыл бұрын
Me thinking about learning python KZbin : I see you wanna learn python,here you go
@aspodermousstoplight100
@aspodermousstoplight100 4 жыл бұрын
Dragonarch youtube just knows man
@theboiyoulove5124
@theboiyoulove5124 4 жыл бұрын
bruh i recommend you to learn python before watching this video
@euphoric-therapeuticmusic5374
@euphoric-therapeuticmusic5374 3 жыл бұрын
Neuralink in action
@MahdeenSky
@MahdeenSky 4 жыл бұрын
this is very easy to understand, good job, very few sqlite3 tutorials actually show the syntax of the sql knowledge and doesn't assume we learned the sql language beforehand, and this is one of them. Fantastic!
@MahdeenSky
@MahdeenSky 4 жыл бұрын
may i ask how do i move on from this tutorial into more functional sql?
@atomiccow1906
@atomiccow1906 Жыл бұрын
@@MahdeenSky howd it go
@shivangivishwasrao1983
@shivangivishwasrao1983 2 жыл бұрын
Simply loved how crisp and to the point this course was. Thank you so much!
@darthvoda
@darthvoda 2 жыл бұрын
Very good introductory course! Thank you for sharing, the energy end enthusiasm is contagious! Looking forward to learn slqite more in depth, but at a first glance I didn't found an advanced course on codemy..
@shrishailgharat1964
@shrishailgharat1964 4 жыл бұрын
John hope you are eating well and are healthy. Really loved the course. Thanks for the video and keeping it simple and short.
@souzafelix
@souzafelix Жыл бұрын
Didn't know Walter white was so good at teaching sqlite! Great video!
@junioradi6554
@junioradi6554 3 жыл бұрын
Super and simple course which permits to understand the use of database into an application written using Python. Thank you sir
@Surferdudeoh
@Surferdudeoh 3 жыл бұрын
Thanks a lot for this, seriously you are an incredible teacher.
@FlowGrapher
@FlowGrapher 4 жыл бұрын
Just started a new project in React-Native this SQLite course will help a lot for mobile dev. Thanks 🙏
@larslover6559
@larslover6559 11 ай бұрын
Thank you so much John for the lesson! Your calm natural way of teaching is great!
@franklecky6570
@franklecky6570 Жыл бұрын
Really easy to understand course. Some very useful bits in there. Thanks John!
@louisyang185
@louisyang185 3 жыл бұрын
this is sooooo useful. thank you so much. you're an incredible teacher!
@boa2145
@boa2145 2 жыл бұрын
Hi John, I watched all clips. Thx for your full course "Sqlite databases with Python". Well done!!!
@dexternepo
@dexternepo 3 жыл бұрын
At 37:21 he mispronounces tuple as "toople" and then corrects himself after immediately remembering the correct pronunciation. As a non-native speaker of English from India, this brings a smile to my face. Because this is exactly what we do at times. When we learn English from textbooks, we have our pronunciation for some words, and then after watching native speakers pronounce it differently we try to remember the correct pronunciation. But still end up pronuncing it the way we first learned it in spite of knowing the correct way. The word that immediately comes to my mind that I personally mispronounce is "environment".
@MrMoKhalaf
@MrMoKhalaf 4 ай бұрын
🤣🤣🤣
@JuanThomasAlvarez
@JuanThomasAlvarez 2 жыл бұрын
It would be good to show readonly vs read+write connections to the sqlite3 database file, which comes in handy if you're creating a flask web app which will be used by multiple individuals at once.
@Lucaischz
@Lucaischz 3 жыл бұрын
As far as I know, docstrings aren't the same as triple quote strings. Docstrings are indeed expressed on tripple quote strings, but it means something more specific, which is the on code documentation for classes and functions, actually working as source code comments, but the syntax accepts this particular case because it's industry standard. Edit: also, as far as I know, SQL is case INSENSITIVE, actually, but it's good practice to capitalize reserved words to distinguish it from context defined elements (names, parameters, etc).
@pepijnkrijnsen4
@pepijnkrijnsen4 3 жыл бұрын
Six months later but you're absolutely right
@aidynskullz4139
@aidynskullz4139 4 жыл бұрын
What kind of witch sorcery is this channel? As soon as I need to learn something for a project, a new course is released on the topic. This is insane and might be the tenth time it's happening. Keep up the good work!!!
@freecodecamp
@freecodecamp 4 жыл бұрын
When deciding what course to post, our first thought is always "What does Aidyn Skullz need to learn right now?" 😀
@aidynskullz4139
@aidynskullz4139 4 жыл бұрын
@@freecodecamp haha LOL. Thanks for replying though XD.
@euphoric-therapeuticmusic5374
@euphoric-therapeuticmusic5374 3 жыл бұрын
@@freecodecamp so you guys have everything ready? why not post all of them.
@sabilislam7629
@sabilislam7629 3 жыл бұрын
You Rock I roll... Seriously, This guy's videos are most helpful in the entire KZbin!
@OnDoitConnaitre
@OnDoitConnaitre 3 жыл бұрын
This Course is really easy to follow and super useful for people who want to start using SQLite, but I wanted to understand 'JOIN' concept which is not explained neither mentioned here, so i guess I will look for some more content.
@cloudtechhills
@cloudtechhills 2 жыл бұрын
I appreciate your work on this tutorial. Thanks mate!
@draganmilinov7495
@draganmilinov7495 3 жыл бұрын
Thank you very much on this video! It helped me. I'm beginner in programming. Python is my first programming language.
@miltondias6617
@miltondias6617 Жыл бұрын
Very simple and straight forward. Congrats!
@federicobau8651
@federicobau8651 4 жыл бұрын
Ohh man...it feels so great when understand everything!! I like how you teach really smooth and understandable. Soon I will gotta buy some of your courses
@srinjoyghosh7273
@srinjoyghosh7273 2 жыл бұрын
I saw his TKinter playlist too. Amazing teacher !
@pipedreamsnetwerk5110
@pipedreamsnetwerk5110 Жыл бұрын
This was awesome. I was trying to figure out sqlite3. Thanks!!!
@johndoe-rq4gf
@johndoe-rq4gf 3 жыл бұрын
Hi! just a remark: contrary to what you say in the first part, SublimeText is free for evaluation but if you do read the little popup window (or the website) you have to buy a license for continuous usage, it's not a donation, it's a license.
@selikiekone9975
@selikiekone9975 3 жыл бұрын
You are a champion if you have any python course I will go for it. Thank you for your bright knowledge.
@Lennardish
@Lennardish 3 жыл бұрын
Hello John, Your course is MOST helpful. Thanks a lot. Cristal clear :)))
@johannesperez9548
@johannesperez9548 2 жыл бұрын
Thanks John! Super useful! I learned a lot!!!
@noir371
@noir371 2 жыл бұрын
Really appreciate everything this channel does!
@026maheshkumars7
@026maheshkumars7 Жыл бұрын
I have finished this course...I have enjoyed every second in this course and i have learned lot of details... thankyou very much..
@brianburch8062
@brianburch8062 2 жыл бұрын
Ah, thank you. This video cleared up a lot of things I was confused about.
@franciscofurey4878
@franciscofurey4878 2 жыл бұрын
Amazing course! such a big teacher and explanation method!
@anzhelazenaishvili7380
@anzhelazenaishvili7380 4 жыл бұрын
Hello ,I am starting to learn Data science,so I am beginer and this course it's very good for beginers,thank you very much!!!
@splungedude
@splungedude 4 жыл бұрын
1:29:36 if you use: id = str(id) in the delete_one function the input will be converted to an interger
@sambidao88
@sambidao88 Жыл бұрын
Thank you! The author made me understand to use Python that do CRUD a database incredibly
@conermos
@conermos 3 жыл бұрын
Thanks so much. This video was very informative and was very well-structured
@ilyastrojnov7627
@ilyastrojnov7627 3 жыл бұрын
Thx for video! I think that best way for use database functions is optional args connection, we just create one connection and use it in all functions
@EpicGamer-ux1tu
@EpicGamer-ux1tu Жыл бұрын
Great video mate, I learned SQL and sqlite3 from you, thanks
@whatisleansixsigmabydr.sal4884
@whatisleansixsigmabydr.sal4884 3 жыл бұрын
You did such a great job. I loved it.
@ariansoltani6079
@ariansoltani6079 10 ай бұрын
Thank you for publishing this video and teaching smoothly .....very practical and useful 👌
@captainpenny2122
@captainpenny2122 10 ай бұрын
Thank you so much for this videos, it was well planned and really helped me!!!
@GameKnightOTRT
@GameKnightOTRT 6 ай бұрын
This is an older video but i found it very helpful so thank you first off! Secondly, if any of you are using VS Code instead of sublime you will need to make sure you are physically inside of the folder through the explorer tab. Once inside select the sqlite folder then go to git bash and follow his steps from there!
@logeszz_07
@logeszz_07 5 ай бұрын
Bro how to run vscode instead of sublime please give proper steps
@aniruddhakulkarni700
@aniruddhakulkarni700 3 жыл бұрын
Thank you for this Walter!
@medimarsh2376
@medimarsh2376 3 жыл бұрын
in spite of all unfair comments, I have to say perfect video. Thanks!!!
@utkarshrastogi8791
@utkarshrastogi8791 4 жыл бұрын
Massive respect for these guys
@nickeax
@nickeax 4 жыл бұрын
Thanks for the brilliant guide.
@gabrielade775
@gabrielade775 Жыл бұрын
Great hands on course, thank you John
@argjendsejfullai8541
@argjendsejfullai8541 3 жыл бұрын
you know i might pass my exam because of you sir , you earn my respect :D
@Meta910
@Meta910 3 жыл бұрын
AMAZING....#just got re-candled again😊
@OlivierSuire
@OlivierSuire 3 жыл бұрын
17:44 it seems to me that databases really start making sense when they are comprised of MULTIPLE tables. I wish you would have touched this subject. Other than that : fantastic video ; it really helped.
@jagadeeshkumar7724
@jagadeeshkumar7724 Жыл бұрын
He is enjoying himself.. he doesn't want the output to be displayed... What a gamer!!!!!
@xxl0o
@xxl0o Жыл бұрын
Great course! Thanks a lot!
@francescoroccocrisafi6617
@francescoroccocrisafi6617 3 жыл бұрын
Great tutorial! Thank you for sharing it
@marwanrabi5450
@marwanrabi5450 Жыл бұрын
What a CrashCourse man!! AWESOME!!
@tehreemqasim2204
@tehreemqasim2204 2 жыл бұрын
Excellent tutorial. Many thanks for the great videos.
@jamestang1737
@jamestang1737 4 жыл бұрын
informative video! quick question: if i have a csv file and want to create a connection for sqlite3 to query, do i have to save the csv first as a database in either SMSS etc, then export the .db to a working directory? trying to understand the best way to read_csv in pandas but with SQL. Thanks
@nickjakes8663
@nickjakes8663 2 жыл бұрын
Absolutely fantastic! Thank you
@walternyc
@walternyc 3 жыл бұрын
Thanks. This is an excellent reference video.
@techsutra4917
@techsutra4917 Жыл бұрын
thanks alot that was such an awesome video to learn basics about sql lite with python
@mr.dineshlee
@mr.dineshlee 3 жыл бұрын
Very Easy to Understand this one...🙏🏻
@mrunixman1579
@mrunixman1579 2 жыл бұрын
I noticed something while using fetchone, each time it is called it goes down a row. I assigned it to a variable to print a formatted output of the fields then used a for loop to iterate through total amounts of the database as I have only 5 entries.
@robertopulido9557
@robertopulido9557 3 жыл бұрын
thank you, you make so much easier, i know there it is more ways to do it but i just get confused thank you
@sanjayraj1700
@sanjayraj1700 2 жыл бұрын
Thank you John. It was really helpful :)
@Lennardish
@Lennardish Жыл бұрын
Hello John, I followed closely your instructions in using tkinter and making a database. I changed your example a bit, in that I only ask for a first name and underneath that a number of entry boxes in which scores on some test can be filled in. Two questions: 1. How to get the results in some listbox or something like that 2. How can I send the results to a printer. This printer thing a a huge challenge for me :) Thank you for your fantastic video's !!
@BabaBoota-lg2pq
@BabaBoota-lg2pq Жыл бұрын
you can execute this query SELECT * FROM [table name] and then you can just use this method fetchall() on the cursor while assigning it to a variable and now your variable simply contains a list of tuples and each tuple contains values of each row corresponding to the column names.
@rahulgovindkumar3105
@rahulgovindkumar3105 2 жыл бұрын
Thank you for this super helpful video!
@buckbuck2773
@buckbuck2773 11 ай бұрын
c.execute("INSERT INTO Customers VALUES (?,?,?)", (List)) sqlite3.ProgrammingError: Incorrect number of bindings supplied. The current statement uses 3, and there are 2 supplied. I've rewound the video like dozens of times now and watched it. Finally I noticed that I'm using execute() instead of executemany(). c.executemany("INSERT INTO Customers VALUES (?,?,?)", List) now it works.
@i_am_dumb1070
@i_am_dumb1070 3 ай бұрын
Really easy to follow along course loved the simple explanation thankyou
@Schecter1989
@Schecter1989 4 жыл бұрын
In the Delete Records video, I had created 7 records and deleted rowid = 4. My updated table had the following rowid's: 1, 2, 3, 5, 6, 7. I was assuming the rowid's would have stayed the same and the records would have simply shifted up. Is there any way to get that rowid 4 back or is gone forever? Thanks for the great course and I look forward to your response.
@RC-qi6hs
@RC-qi6hs 4 жыл бұрын
Thanks to KZbin, im gonna complete my bachelor's before end of my 2nd semester of college 😂😂✌️
@reold
@reold 3 жыл бұрын
Am studying in 7th grade!
@RC-qi6hs
@RC-qi6hs 3 жыл бұрын
@@reold cool
@tamizhiniansenthil4347
@tamizhiniansenthil4347 3 жыл бұрын
@@reold same here
@narekhovsepyan6789
@narekhovsepyan6789 3 жыл бұрын
😂😂
@marjiba4303
@marjiba4303 3 жыл бұрын
I was born yesterday
@jonatanmissora6521
@jonatanmissora6521 4 жыл бұрын
Hi John, your tutorials are awesome, I learned a lot with em. Thanks. If I delete, for example, rowid=2, then table will be 1, 3, 4, 5, etc. Can we fix that id order to make them 1, 2, 3, 4, etc again? Another, Can I insert in that missing rowid=2? Could I insert data in an specific rowid? or just at the end? Thank you, thank you for the feedback
@euphoric-therapeuticmusic5374
@euphoric-therapeuticmusic5374 3 жыл бұрын
These are back-end ids (primary keys), I don't think that much of sophistication is necessary when navigating through these.
@MullahJeelan
@MullahJeelan Жыл бұрын
You are amazing and you are way of teaching is brilliant and time saving
@tridevjha255
@tridevjha255 Жыл бұрын
Really helpful Video Made the bridge of knowledge which I needed from a long time One more time thank you
@pkavenger9990
@pkavenger9990 4 жыл бұрын
i love his style of teaching: "So guys what is SQL? I don't know.....................
@theBATfamiliar
@theBATfamiliar 4 жыл бұрын
Thank you guys for sharing
@otabekjunashaliev
@otabekjunashaliev 2 жыл бұрын
super helpful and understandable, Thanks a lot
@zoundart
@zoundart Жыл бұрын
Thanks for a great video! Hope it is ok that I ask what software do you use to get the talking heads without background? It looks great!
@tomlynn1000
@tomlynn1000 8 ай бұрын
Clicking the like button at the start of the video is like tipping before you get your food.
@Life-zx5wp
@Life-zx5wp 2 жыл бұрын
so thank for your video! i want to ask you: - That program can edit value, name, address and anything in the same time but online 1 command" select * form database" - if i want to show 2 table in the same time, it can't do that look like: "select * form database1" and "select * from database2" - it can do like: "select name, id form database" but it can't do " select name form database and select id form database" in the same time
@zainabbasmerchant9650
@zainabbasmerchant9650 3 жыл бұрын
Better than my college professor thanks a lot ✌
@le_moski
@le_moski 3 жыл бұрын
1:02:43 Epic bruh moment Excelent video btw
@Langeta-kun
@Langeta-kun 4 ай бұрын
this was amazing! granted Im a comp sci student and I finished sql and python. But i had no idea what I was doing! This was smooooth(I still had issues btw but I guess that is just SQL)
@Lennardish
@Lennardish Жыл бұрын
Hello John, I worked on a program that asks the number of records to be inserted: import sqlite3 conn = sqlite3.connect('student.db') #create a cursor c = conn.cursor() vnaam = ' ' #Inserting records aant = int(input('Number of records to be inserted')) for x in range(aant): vnaam = input("First name? :") anaam = input("Surname? :") rek = input("Arithmetic score :") taal = int(input("Language score :")) studenten = [ (vnaam, anaam, rek, taal) ] c.executemany("INSERT INTO studenten VALUES (?,?,?,?)", studenten) print("Inserted") #Commando uitvoeren conn.commit() #afsluiten! conn.close() And it works :) (Thanks to your clear way of instructing us :)
@oqant0424
@oqant0424 3 жыл бұрын
truely commendable...thanks a bunch
@vw2385
@vw2385 2 жыл бұрын
Thank you very much for your videos ! I have an issue when using sqlite3 and python at work. I'd like to importe datas in my table only if they are not in the table yet so I w'ont like to have same rows in my data base. How could I do that ? Thanks in advance !
@usmantariq5615
@usmantariq5615 2 жыл бұрын
Excellent dude.. Very good course for beginners.
God-Tier Developer Roadmap
16:42
Fireship
Рет қаралды 7 МЛН
you need to learn SQL RIGHT NOW!! (SQL Tutorial for Beginners)
24:25
NetworkChuck
Рет қаралды 1,5 МЛН
Who has won ?? 😀 #shortvideo #lizzyisaeva
00:24
Lizzy Isaeva
Рет қаралды 63 МЛН
Slow motion boy #shorts by Tsuriki Show
00:14
Tsuriki Show
Рет қаралды 2,6 МЛН
Дарю Самокат Скейтеру !
00:42
Vlad Samokatchik
Рет қаралды 8 МЛН
Does size matter? BEACH EDITION
00:32
Mini Katana
Рет қаралды 19 МЛН
SQLite Backend for Beginners - Create Quick Databases with Python and SQL
13:32
SQLite Introduction - Beginners Guide to SQL and Databases
21:49
Caleb Curry
Рет қаралды 23 М.
Writing My Own Database From Scratch
42:00
Tony Saro
Рет қаралды 182 М.
I've been using Redis wrong this whole time...
20:53
Dreams of Code
Рет қаралды 339 М.
Learn SQL In 60 Minutes
56:24
Web Dev Simplified
Рет қаралды 2,1 МЛН
It’s time to move on from Agile Software Development (It's not working)
11:07
Pydantic Tutorial • Solving Python's Biggest Problem
11:07
pixegami
Рет қаралды 251 М.
Automate with Python - Full Course for Beginners
2:42:55
freeCodeCamp.org
Рет қаралды 1,5 МЛН
Generative AI in a Nutshell - how to survive and thrive in the age of AI
17:57
Who has won ?? 😀 #shortvideo #lizzyisaeva
00:24
Lizzy Isaeva
Рет қаралды 63 МЛН