Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

PostgreSQL 添加列


ALTER TABLE 语句

要向现有表添加列,我们必须使用 ALTER TABLE 语句。

ALTER TABLE 语句用于在现有表中添加、删除或修改列。

ALTER TABLE 语句还用于在现有表上添加和删除各种约束。


添加列

我们想要向我们的 cars 表中添加一个名为 color 的列。

添加列时,我们还必须指定列的数据类型。我们的 color 列将是一个字符串,我们使用 VARCHAR 关键字指定字符串类型。我们还希望将字符数限制为 255。

示例

添加一个名为 color 的列

ALTER TABLE cars
ADD color VARCHAR(255);

结果

ALTER TABLE

显示表

要检查结果,我们可以使用以下 SQL 语句显示表

示例

SELECT * FROM cars;
运行示例 »

如您所见,cars 表现在有一个 color 列。

新列是空的,您将在下一章中学习如何用值填充它。


PostgreSQL 练习

通过练习测试自己

练习

编写正确的 SQL 语句,向 cars 表中添加一个名为 colors 的列。

 cars
 color VARCHAR(255);
        

开始练习


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.