Question: Write a Program in MySQL that: Create a table with this command CREATE TABLE A _ TEST ( id number ) ; Develop a PL

Write a Program in MySQL that:
Create a table with this command
CREATE TABLE A_TEST (id number);
Develop a PL/SQL code to insert 10 records into above table.
Use FOR LOOP to insert 10 numbers
INSERT INTO A_TEST VALUES (i , 'times');
Use WHILE LOOP to insert 10 numbers
INSERT INTO A_TEST VALUES (counter , 'times');
 Write a Program in MySQL that: Create a table with this

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!