SQLite Tutorial For Beginners - Make A Database In No Time
Avery Makes Games
My Channel: https://www.youtube.com/user/someguy683?sub_confirmation=1 In today's video we create a sqlite database and table, fill it with data and query through it!
PYTHON TUTORIAL ► https://youtu.be/COfSeLoFNH8
What do you want to see in the next sqlite tutorial: c++, java, python, php?
Thanks for watching!
Like, comment, and subscribe.
SQLite Site: https://www.sqlite.org/index.html SQLite Browser: https://sqlitebrowser.org/ Example Site: thebeachstreet.com
Snippet of Today's Code: CREATE TABLE people (id INTEGER PRIMARY KEY, first_name TEXT, last_name TEXT, age INTEGER, gender TEXT); INSERT INTO people (first_name, last_name, age, gender) VALUES ("rick", "sanchez", 35, "m"); SELECT * FROM people WHERE last_name="bob" ORDER BY age DESC; DELETE FROM people WHERE age=5;
Music for outro: The Tree Where Tortoro Sits Kajus https://www.youtube.com/watch?v=x_oCQm0fweU ... https://www.youtube.com/watch?v=HQKwgk6XkIA
53694266 Bytes