Question

a) Create a Table called Students b) Develop a Form with the following fields FName, LName, Test1, Test2, Test3,State c)Using
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Below are the sql queries:

create table Students
(FName varchar(20) not null,
LName varchar(20) not null,
Test1 int not null,
Test2 int not null,
Test3 int not null,
State varchar(20) not null);

insert into Students values ('Bob', 'Smith', 79, 81, 86, 'NY');

insert into Students values ('Jim', 'Thorpe', 82, 64, 91, 'Conn');

insert into Students values ('Ken', 'Griffey', 100, 95, 92, 'Ohio');

insert into Students values ('Bartolo', 'Colon', 85, 88, 93, 'Ohio');

insert into Students values ('Ken', 'Keltner', 91, 84, 87, 'Cal');

insert into Students values ('Lou', 'Staub', 76, 89, 42, 'Mich');

Problem 1: select LName from Students where State = 'Ohio';

Problem 2:   select FName, LName from Students where FName = 'Ken';

Add a comment
Know the answer?
Add Answer to:
a) Create a Table called Students b) Develop a Form with the following fields FName, LName,...
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