search
HomeDatabaseMysql TutorialComprehensive exposure to SQL syntax (1)
Comprehensive exposure to SQL syntax (1)Dec 24, 2016 pm 05:44 PM
sql syntax

SQL functions and features
In fact, in the previous article, some basic functions of SQL commands have been mentioned. However, through SQL commands, programmers or database administrators (DBA) can:
(1) Create database tables . (Including setting the space that can be used by the table)
  (2) Change the database system environment settings.
  (3) Grant users access rights to a certain database or table.
  (4) Create index values ​​for database tables.
  (5) Modify the database table structure. (Create, delete or modify table fields)
  (6) Create new data in the database.
  (7) Delete data from the database.
  (8) Modify data in the database.
  (9) Query data from the database.
 These are the things that can be accomplished through SQL commands. Doesn’t it seem that there are many more functions than the word “query” represents?

 Classification of SQL syntax

In fact, there are not many SQL commands, but to use SQL to perfection, only a few commands are enough, because SQL commands are grammatical descriptions created for relational databases , so SQL plays a very powerful role in this type of database. The following will classify and introduce the basic SQL syntax commands commonly used in VB. Before explaining the commands and syntax of SQL, SQL is classified below. The types used in SQL syntax can be said to be included in these categories.

 The first category, attribute words (PRedicates)

 It is used in SQL commands to indicate the way to select the records. Such as ALL, TOP and DISTINCT, etc.

  The second category, Declaration

  Make declarations on the name and data type of SQL Parameter or Parameter Query, such as the declaration of PARAMETERS, etc.

 The third category, conditional clause (Clause)

 In SQL queries, some expressions are used to define the conditions of the query to narrow the scope of the search, such as WHERE.

 The fourth category, operator (Operator) and operand (Operation)

 In SQL query, it and Operation together form an expression (Expression), such as BETWEEN....AND operator and INNER JOIN operand.

 The fifth category, Function

  Some common SQL functions, such as AVG(), are functions that find the arithmetic mean.

  The sixth category, SQL statement (Statement)

  The SQL statement can be said to be the main body of SQL grammar. It is used to issue instructions to a specific database and return related data. The syntax structure of SQL is basically It can be represented by the following formula: command + conditional clause

For example:

SELECT*FROM TAB WHERE TAB.NAME='A'

"FROM....WHERE" is a condition Clause, in fact, the syntax of SQL is not difficult. You only need to remember such a rule, and I believe you can quickly understand the usage of SQL.

 SQL syntax and commands


SELECT statement
SELECT[predicate]{*|table.*|[table.]field [,[table.]field2[,...]]} [AS alias1 [,alias2[ ,...]]]
FROM tableexpression [,...][IN externaldatabase]
[WHERE...]
[GROUP BY...]
[HAVING...]
[ORDER BY...]
[WITH OWNERaccess OPTION]
The SELECT statement includes the following parts
predicate



As mentioned earlier, it includes ALL, DISTINCT, DISTINCTROW, and TOP. We can use such statements to limit the results obtained after the query.

  *

 Specify all fields from the specified table.

 table

 The name of the specified table for the fields of the selected records.

 field1,field2

  If the field name you want to read data contains more than one field, the data will be read in the order listed.

 alias1,alias2

  Pseudonyms used to replace the actual field names in the form.

 tableexpression

 Table name or table containing the data we want.

 Externaldatabase

 If a database other than the current one is used, define its name in externaldatabase.
 
  ALL, DISTINCT, DISTINCTROW, TOP attribute word usage

SELECT [ALL|DISTINCT|DISTINCTROW|[TOP n[PERCENT]]] FROM table

  ALL

If you do not specify any field data, the Microsoft Jet database The database engine will select all fields and query the required data set based on the specified conditions.

The above is the content of comprehensive contact with SQL syntax (1). For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


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
How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

How do you handle large datasets in MySQL?How do you handle large datasets in MySQL?Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you drop a table in MySQL using the DROP TABLE statement?How do you drop a table in MySQL using the DROP TABLE statement?Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you represent relationships using foreign keys?How do you represent relationships using foreign keys?Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do you create indexes on JSON columns?How do you create indexes on JSON columns?Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.