About 371,000 results
Open links in new tab
  1. SQL ALTER TABLE Statement - W3Schools

    The ALTER TABLE statement is used to add, delete, or modify columns in an existing table. The ALTER TABLE statement is also used to add and drop various constraints on an existing table.

  2. SQL ALTER TABLE - GeeksforGeeks

    Aug 25, 2025 · SQL ALTER TABLE statement modify the structure of an existing table in a database. Whether adding new columns, modifying existing ones, deleting columns or …

  3. SQL ALTER TABLE Statement

    In this tutorial, you'll learn how to use the SQL ALTER TABLE statement to change the structure of an existing table.

  4. ALTER TABLE (Transact-SQL) - SQL Server | Microsoft Learn

    ALTER TABLE modifies a table definition by altering, adding, or dropping columns and constraints. ALTER TABLE also reassigns and rebuilds partitions, or disables and enables …

  5. SQL: ALTER TABLE Statement - TechOnTheNet

    This SQL tutorial explains how to use the SQL ALTER TABLE statement to add a column, modify a column, drop a column, rename a column or rename a table (with lots of clear, concise …

  6. ALTERSQL Tutorial

    The SQL ALTER statement is used to modify the structure of existing database objects such as tables, views, procedures, functions, and triggers. The ALTER statement allows you to change …

  7. ALTER TABLE Statement in SQL – ADD, DROP, MODIFY, RENAME

    Aug 5, 2025 · The ALTER command in SQL is a powerful tool that allows you to change the structure of existing database objects without affecting the data they contain. The command …

  8. How to Use the ALTER TABLE Statement in SQL - W3Schools

    When you need to change your database table, such as to accommodate new data types or business requirements, you can use ALTER TABLE to seamlessly modify tables rather than …

  9. SQL ALTER TABLE - Online Tutorials Library

    Following is the basic syntax of the ALTER TABLE statement: -- operation here (ADD / DROP / RENAME / MODIFY) Different database systems (MySQL, SQL Server, PostgreSQL) have …

  10. SQLrevisited: 10 Examples of ALTER Table Command in SQL

    Sep 2, 2024 · In this SQL tutorial, you will learn how to use ALTER command in the table on the database. ALTER command is mainly used to add, modify and drop columns, indexes, and …