enrolled in a yearly course has incorrect --data in records with ids between 20 and 100 (inclusive)

---------------------------------------------------------
--A table containing the students enrolled in a yearly course has incorrect 
--data in records with ids between 20 and 100 (inclusive).
DROP TABLE IF EXISTS enrollments;
CREATE TABLE enrollments
  (id int NOT NULL PRIMARY KEY,
  year int NOT NULL,
  studentId int NOT NULL)
  -- insert sample data
Declare @Id int
Set @Id = 1

Declare @studentId int
Set @studentId = 10

Declare @LowerLimitForYear int
Declare @UprerLimitForYear int

Set @LowerLimitForYear= 2000
Set @UprerLimitForYear= 2100

Declare @RandomYear int
while(@Id <= 200)
Begin
	select @RandomYear =  ROUND((@UprerLimitForYear -@LowerLimitForYear)* RAND() +1,0)*100
	Insert into enrollments
		Values(@Id,@RandomYear,@studentId)
	Set @Id = @Id +1
	Set @studentId = @studentId +10
		
END

--Write a query that updates the field 'year' 
-- of every faulty record to 2015.
update enrollments
set [year] = 2015
where id between 20 and 100

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source