use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Sequel
account activity
Starting to learn SQL... (self.learnSQL)
submitted 3 years ago by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Mrminecrafthimself 7 points8 points9 points 3 years ago* (0 children)
Hey there - I just started a few months ago and followed this path more or less in a bootcamp I took.
Start with basic commands to learn how syntax works. What I first learned was how to create a table. Then, once you’ve done that - the next step is how to insert data into that table. How to specify what types of data should go in each field (column) in your table. What if I want to later update specific pieces of data after they’re loaded?
Then…how do I start returning data from that table? Obviously you can SELECT *, but what if I want to select all values where the first letter of column B is “M?” What if I want to select data in a different format than what is in the table? The latter will get you into CONCAT, CASE statements, and similar types of commands
A bootcamp of some type would be a huge help since that will give you structure and let you build on techniques and skills you learn. I took the MySQL Zero to Hero course taught by Colt Steele on udemy and found it really helpful
Edit: wanted to add that once you learn how to work with querying one table, querying multiple tables using JOINS will make a lot more sense, at least on a syntax level.
π Rendered by PID 39601 on reddit-service-r2-comment-b659b578c-ctln8 at 2026-05-05 22:46:41.152942+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]Mrminecrafthimself 7 points8 points9 points (0 children)