For a table named CUSTOMERS, you should use this SQL statement:
CREATE TABLE AGENTS
(AGENT_ID INT,
AGENT_NAME CHAR (60));
SQL is an abbreviation for structured query language and it can be defined as a domain-specific programming language which is used for the management of various data that are saved in a relational (structured) database.
For a table named CUSTOMERS, you should use this SQL statement:
CREATE TABLE AGENTS
(AGENT_ID INT,
AGENT_NAME CHAR (60));
Read more on SQL here: brainly.com/question/25266787
#SPJ1