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 插入数据


插入数据

在 PostgreSQL 中,我们使用 INSERT INTO 语句将数据插入表中。

以下 SQL 语句将一行数据插入到您在上一章中创建的 cars 表中。

INSERT INTO cars (brand, model, year)
VALUES ('Ford', 'Mustang', 1964);

SQL Shell 应用程序将返回以下内容

INSERT 0 1

这意味着插入了 1 行数据。

暂时不用考虑 0 的含义,只需接受它代表其他内容并且始终为 0 即可。


SQL 语句解释

如上所示的 SQL 语句中,字符串值必须用单引号括起来。

数值可以不用单引号括起来,但也可以用单引号括起来。


显示表

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

SELECT * FROM cars;

这将返回以下结果

 brand |  model  | year
-------+---------+------
 Ford  | Mustang | 1964
(1 行)

插入多行数据

要插入多行数据,我们使用相同的 INSERT INTO 语句,但使用多个值

INSERT INTO cars (brand, model, year)
VALUES
  ('Volvo', 'p1800', 1968),
  ('BMW', 'M1', 1978),
  ('Toyota', 'Celica', 1975);

SQL Shell 应用程序将返回以下内容

INSERT 0 3

这意味着成功插入了 3 行数据。


显示表

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

示例

SELECT * FROM cars;
运行示例 »

点击“运行示例”按钮查看 select 语句的结果。


PostgreSQL 练习

通过练习测试自己

练习

编写正确的 SQL 语句,将新记录插入 cars 表中

 cars (brand, model, year)
 ('Ford', 'Mustang', 1964);
        

开始练习


×

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.