create a table named states with field like state name, capital name, language, and main cities under the country database insert five rows and show data on screen .in sql
Answers
Answered by
1
Answer:
use country;(changing the database)
create table states (state_name varchar (20),capital_name varchar (20),language varchar (20),main_cities varchar (30));
(the above statement is used for creating table)
and for inserting rows you can use insert query and insert whatever data you wane to insert...
and for showing table with data you have inserted use query..
select * from states;
#hope it helps you
please mark brainliest
Similar questions