Question

1. Create a table called tblActor. The tblActor should have the following fields (name, description, dob, country image) Answer Paste the SOL commands you wrote to create the table Paste a screen shot shows the created table in MyPHPAdmin: 2. Populate the table tblActor with information about your favorite four actors. Answer. orite foue tblActo Paste ascreen shot shows the data you added tothe .thActor: 9990es 3. Write a PHP code that read the data from the tblActor table, and generate a JSON response similar to the following format. Name the PHP file “View AllActors.php.. actorsname.Brad Pitt, description. Brad Pitt is an American actor and film producer. He has received a Golden Globe Award, a Screen Actors Guild Award, and three Academy Award nominations in acting categories.dob: December 18, 1963,country.United States,image. http:lItors.comllbrad.jpg, name. Tom Cruise,description:Tom Cruise, is an American film actor and producer. He has been nominated for three Academy Awards and has won three Golden Globe Awards.,dob:July 3, 1962,country. United States,image.http:Actors.comltom.jpg name.Angelina Jolie,description:Angelina Jolie is an American actress, film director, screenwriter, and
0 0
Add a comment Improve this question Transcribed image text
Answer #1

1.

SQL> CREATE TABLE tblActor(
   name VARCHAR (20),
   description VARCHAR (40),
   dob DATE,
   country VARCHAR (15),
   image BLOB 1M,
);

You can use the above SQL query to create the table.

Notice that BLOB can be used to store binary data thereby it can store an image.

The size is specified as 1 Megabytes. Hope this helps.

Add a comment
Know the answer?
Add Answer to:
Create a table called "tblActor". The tblActor should have the following fields (name, description, dob, country,...
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