Computer Science, asked by Atom5685, 1 year ago

Which one of the following statements is used to create a table?
A.CREATE TABLE table_name (column_name column_type);
B.CREATE table_name (column_type column_name);
C.CREATE table_name (column_name column_type);
D.CREATE TABLE table_name (column_type column_name);

Answers

Answered by Anonymous
3
______✨ HEY MATE ✨______

➡️Option (A) CREATE TABLE table_name (column_name column_type); is the right answer ✔️

<marquee>✌️ I THINK IT HELPED YOU ✌️
Answered by kavyapsynergy
2

CREATE TABLE table_name (column_name column_type); statements is used to create a table

CREATE TABLE

  • A new table in a database is created using the SQL CREATE TABLE statement. A basic table is created by naming it, describing its columns, and defining the data type for each column.
  • Following the CREATE TABLE statement is the table's unique name or identifier. The list that defines each column in the table, as well as what type of data it is, is then enclosed in brackets.

Similar questions