Question

Consider the following SQL table, called LDL_Cholesterol,of LDL Cholesterol Levels and their classifications. (NB: Although t

0 0
Add a comment Improve this question Transcribed image text
Answer #1

create table LDL_Cholesterol(Classification varchar(25),
                           Minimum int,
                           Maximum int);

insert into LDL_Cholesterol values('Desirable',40,99);
insert into LDL_Cholesterol values('Optimal',100,129);
insert into LDL_Cholesterol values('Borderline High',130,159);
insert into LDL_Cholesterol values('High Risk',160,189);
insert into LDL_Cholesterol values('Very High Risk',190,250);

select Classification,minimum "Min",maximum "Max"
from LDL_Cholesterol;

update LDL_Cholesterol set Classification='Get Help!'
where Classification='Very High Risk';

select Classification,minimum "Min",maximum "Max"
from LDL_Cholesterol;
SQL> select Classification, mininum Min,maximum Max 2 From LDL Cholesterol; Min CLASSIFICATION Max Desirable 40 Optimal B

Add a comment
Know the answer?
Add Answer to:
Consider the following SQL table, called LDL_Cholesterol,of LDL Cholesterol Levels and their classifications. (NB: Although the classifications in the table are generally accepted, a fictitious maxim...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT