1.

Consider a table VOTER with the columns as follows:voterno, votername, age, address, and phone.write SQL queries for the following:​

Answer»

create table VOTER (voterno INT(20), votename varchar (20), age int (2), address varchar (50) , PHONE int (10));



Discussion

No Comment Found