I never needed to use anything more complex than the simple CRUD (SELECT, INSERT, DELETE, UPDATE) in SQL, so I don't know much about SQL programming.
I have 3 tables (Users, CourseUsers and Courses which system is represent the courses assigned to a single user) and I would like to create a procedure which as soon as I create a new course it also assign this course to every user. What I see I need here is a For each loop to iterate through every user inserting a new row in CourseUsers table
How do I create a loop in SQL?