当前位置:网站首页>Several simple queries of SQL Server database
Several simple queries of SQL Server database
2022-06-30 00:15:00 【Little brother】
In the case of a large number of database files , To find a piece of information more clearly and quickly , Here are some examples 3 Kind of SQL Query methods :
1、 Projection query
2、 Select query
3、 Sort query
The following is the database table for testing Table:

The first is projection query , In order to make the viewed data more explicit , Understandability .
There are three ways to write projection queries :
① select CID Customer number ,CContact Contacts ,CPhone contact number ,CIntegration integral from Table
② select CID AS Customer number ,CContact AS Contacts ,CPhone AS contact number ,CIntegration AS integral from Table
③ select Customer number =CID, Contacts =CContact, contact number =CPhone, integral =CIntegration from Table
Projection query result :

Secondly, select query , In order to accurately find the data content of the condition .
select * from Table where CIntegration<=24 and CPhone like '%244575%'
% Represents a string of arbitrary length
Select query score less than 24 And the phone number is 244575 The data result of :

Finally, the sorting query , In ascending and descending order .
select * from Table order by CIntegration desc
desc: Descending ,asc: Ascending , The default is ascending
Sort query results :

This is it. SQL Server Database 3 A simple query method .
边栏推荐
猜你喜欢

Basic operations such as MySQL startup under Windows platform

Basic tutorial for installing monggodb in win10

EB-5 immigration in the United States reappears to be positive, and the reauthorization policy of the regional center is suspended

MySQL multi table query

Root cause of glideexception: failed decodepath{directbytebuffer- > gifdrawable- > drawable}

Mysql:sql overview and database system introduction | dark horse programmer

koa2学习和使用

How to view the CPU cores and threads in win11? Win11 view the tutorial of how many cores and threads the CPU is

由GlideException: Failed DecodePath{DirectByteBuffer->GifDrawable->Drawable}引起的刨根问底

Common knowledge of ECS security settings
随机推荐
Binary search tree 230 The element with the smallest K in the binary search tree 1038 From binary search tree to larger sum tree
js中的事件
Set up enterprise NTP time server
Teach you step by step to install webwind notes on edge browser
[rust weekly library] Tokei - a utility for statistics of code lines and other information
Leetcode (680) -- verifying palindrome string II
Golang6 reflection
vsftp 与 TFTP 与 samba 与 nfs 复习
QPainter的使用入门:绘制象棋界面
基于zfoo开发项目的一些规范
How long will it take to open a mobile account? In addition, is it safe to open a mobile account?
Embedded development: Hardware in the loop testing
ThinkPad VMware installation virtual machine: this host supports Intel VT-x, but Intel VT-x is disabled (problem resolution)
vim插件管理器vim-plug安装方法
Solr basic operation 16
History of deep learning
Solr basic operations 7
8软件工程环境
The role of VMware virtual machine
koa2学习和使用