Top

Discussion

Create a table with the following attributes: Employee(EMPNO integer, EMPNAME of 10 characters)

  • A.Create table Employee(EMPNO int, EMPNAME char(10));
  • B.Create table Employee(EMPNO integer, EMPNAME String(10))
  • C.Create table Emplo(EMPNO number, EMPNAME string);
  • D.Create table Emp(EMPNO int, EMPNAME char(10));

Answer: A

No answer description available for this question
 

No comment is present. Be the first to comment.
Loading…

Post your comment