About 884 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. How to Modify Existing Data in SQL? - GeeksforGeeks

    Aug 6, 2025 · The UPDATE command allows us to modify the data within a table based on specific conditions, while the ALTER TABLE command is used to adjust the schema of the …

  3. SQL Server ALTER TABLE ALTER COLUMN By Examples

    In this tutorial, you will learn how to use the SQL Server ALTER TABLE ALTER COLUMN statement to modify a column of a table.

  4. Modify columns - SQL Server | Microsoft Learn

    Feb 4, 2025 · This article shows you how to modify columns using SQL Server Management Studio and Transact-SQL.

  5. SQL ALTER TABLE Statement

    To change the attribute of an existing column, you use the ALTER COLUMN clause: ALTER COLUMN column_name SET datatype; Code language: SQL (Structured Query Language) …

  6. SQL MODIFY COLUMN | Update Column Attributes - 1Keydata

    Oct 12, 2024 · Learn how to use SQL ALTER TABLE MODIFY COLUMN to change column attributes. Explore syntax and practical examples for updating column definitions in tables.

  7. How to change existing columns in an SQL table - Qualitest …

    Once a connection to an SQL server is acquired and a database’s table is selected for modification, you can change its columns using two different approaches. First, you can …

  8. 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 …

  9. SQL - Modify Data Type and Size of Columns

    The ALTER command is a DDL command to modify the structure of existing tables in the database by adding, modifying, renaming, or dropping columns and constraints. Different …

  10. SQL ALTER COLUMN - GeeksforGeeks

    Jul 23, 2025 · In SQL, the ALTER COLUMN statement is used to modify or change the definition of an existing column in a table. It allows you to change the data type, size, nullability, default …