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
     ❯   

什么是 SQL?


HTML

SQL 代表结构化查询语言

SQL 是一种访问数据库的标准语言

SQL 自 1987 年起成为国际标准 (ISO)


SQL 语句

要访问数据库,您需要使用 SQL 语句。

以下 SQL 语句选择名为“Customers”的数据库表中的所有记录

示例

SELECT * FROM Customers;
自己试试 »

数据库表

数据库通常包含一个或多个表。

每个表都由一个名称标识,例如“Customers”或“Orders”。

下面是“Customers”表的选取内容

ID 客户名称 联系人名称 地址 城市 邮政编码 国家
1

Alfreds Futterkiste Maria Anders Obere Str. 57 柏林 12209 德国
2 Ana Trujillo Emparedados y helados Ana Trujillo Avda. de la Constitución 2222 墨西哥城 05021 墨西哥
3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 墨西哥城 05023 墨西哥
4

Around the Horn Thomas Hardy 120 Hanover Sq. 伦敦 WA1 1DP 英国
5 Berglunds snabbköp Christina Berglund Berguvsvägen 8 吕勒奥 S-958 22 瑞典

上表包含五条记录(每个客户一条)和七列

  1. 客户 ID (ID)
  2. 客户名称
  3. 联系人名称
  4. 地址
  5. 城市
  6. 邮政编码
  7. 国家

最重要的 SQL 语句

  • SELECT - 从数据库中提取数据
  • UPDATE - 更新数据库中的数据
  • DELETE - 从数据库中删除数据
  • INSERT INTO - 将新数据插入数据库
  • CREATE DATABASE - 创建一个新的数据库
  • ALTER DATABASE - 修改数据库
  • CREATE TABLE - 创建一个新表
  • ALTER TABLE - 修改表
  • DROP TABLE - 删除表
  • CREATE INDEX - 创建索引(搜索键)
  • DROP INDEX - 删除索引

SQL 关键字不区分大小写:select 与 SELECT 相同


完整 SQL 教程

这只是一个关于 SQL 的简短介绍。

有关完整的 SQL 教程,请访问 W3Schools SQL 教程


×

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.