Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

M has SQL advanced query

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Query according to specific conditions

WEHRE LIKE BETWEEN IN ON OR.

UNION keyword

Join multiple tables together for row-level processing

SELECT expression1, expression2,... Expression_n

FROM tables

[WHERE conditions]

UNION [ALL | DISTINCT]

SELECT expression1, expression2,... Expression_n

FROM tables

[WHERE conditions]

Parameter description

Expression1, expression2,... Expression_n: the column to retrieve.

Tables: the data table to retrieve.

WHERE conditions: optional, search condition.

DISTINCT: optionally, delete duplicate data in the result set. By default, the UNION operator has removed duplicate data, so the DISTINCT modifier has little effect on the result.

ALL: optional, returns all result sets, including duplicate data.

Sort ORDER BY

Grouping GORUP BY+HAVING

Filter DISTINCT

Join query SQL92/SQL99

The only difference: external connection

Left outside connection LEFT JOIN

Right external connection RIGHT JOIN

Paging query

Original

SELECT FROM

SELECT ROWNUM NUT,T. FROM

(SELECT FROM EMP ORDER BY SAL) T WHERE ROWNUM5

Now

SELECT FROM EMP LIMIT 1,10

Where SELECT * FROM EMP LIMIT N M; N represents the starting position M represents several records in a page.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report