13
Learning SQL
(lemmy.zip)
Related Fediverse communities:
Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient
Have a look at SQLServerCentral.com. Lots of articles and forums there. Of some importance is to think about doing things in sets, not one by one. For example, if you need to do the same thing to a bunch of rows, don’t write a loop to do them one at a time - you can usually do them all at once. Lookup RBAR (Row By Agonising Row).