Home  >  Article  >  Database  >  commands for query in sql

commands for query in sql

下次还敢
下次还敢Original
2024-05-01 21:57:34781browse

Query commands in SQL are used to retrieve data from the database. The most commonly used command is SELECT, which obtains specific data from the table based on the WHERE condition. Other commonly used query commands include INSERT (insert new rows), UPDATE (update existing values), and DELETE (delete rows).

commands for query in sql

Commands used for query in SQL

In SQL (Structured Query Language), query commands are used for Retrieve data from the database. The most commonly used query command is SELECT, which is used to get specific rows and columns from a table.

SELECT command syntax:

<code>SELECT column1, column2, ...
FROM table_name
WHERE condition;</code>

Parameter description:

  • ##column1, column2, .. .: The column name to be retrieved.
  • table_name: The name of the table to be queried.
  • WHERE condition: Optional condition for filtering results.

Other commonly used query commands:

INSERT: Insert new rows into the table.
UPDATE: Updates the value of an existing row in the table.
DELETE: Delete rows from the table.

Query command example:

Select the "name" and "age" columns from the "Students" table:

<code>SELECT name, age
FROM Students;</code>

Select all rows with a price greater than 100 from the "Orders" table:

<code>SELECT *
FROM Orders
WHERE price > 100;</code>

Insert a row into the "Students" table:

<code>INSERT INTO Students (name, age)
VALUES ('John Doe', 21);</code>

Update the price of a specific order in the "Orders" table:

<code>UPDATE Orders
SET price = 150
WHERE order_id = 1;</code>

Delete a specific product from the "Products" table:

<code>DELETE FROM Products
WHERE product_id = 10;</code>

The above is the detailed content of commands for query in sql. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn