Computer Science, asked by payalthakur3371, 9 months ago


Columns cannot be inserted into a table once
it is created.state true or false​

Answers

Answered by kavyapunni
12

MARK ME AS THE BRAINLIEST

Answer:

false

HOPE IT IS USEFUL

Answered by smartbrainz
3

Columns can be inserted into a table once it is created. So, the given statement is False.

  • Tables are database objects that are created to store data .In a database table individual records form rows whereas columns define individual traits or attributes.
  • At the time of creating tables, the columns and their data types are defined but this structure is not frozen, more columns can be added, dropped or even modified to change the data type. All this can be done keeping the data integrity features (primary & foreign key) in mind.
  • ALTER TABLE is the SQL command that makes adding more columns to a database table, possible after it's creation.
  • ALTER TABLE - ADD allows adding new columns.
  • ALTER TABLE - DROP COLUMN allows dropping a column from an existing table.
  • ALTER TABLE - MODIFY allows change of data type of the specified column.

To know more about database tables, visit:

https://brainly.in/question/5081287

Similar questions