Skip to main content
June 16, 2023
Question

Adding column in cloud database

  • June 16, 2023
  • 3 replies
  • 0 views

How to add column in cloud database

    3 replies

    abhayd3663
    June 16, 2023

    Appian cloud is Maria DB.

    The syntax to add a column in a table in MariaDB (using the ALTER TABLE statement) is: ALTER TABLE table_name ADD new_column_name column_definition [ FIRST | AFTER column_name ]; table_name The name of the table to modify. new_column_name The name of the new column to add to the table 

    June 17, 2023

    I am asking abuth sql database

    harshitb6843
    June 17, 2023

    Using alter statement. What problem are you facing?