In: Computer Science
Define a table with the following properties that represent an election.
Below is the DDL statement for Election table
1.Table Name :Election
create table election(
electionID int primary key,
description varchar(500),
electionDate date,
status boolean);