SQL Server Learning Notes (Fri)--Query

Source: Internet
Author: User

Basic syntax structure for queries:

Select Column name/* from table name [where restriction] [order by order]

1. Query all rows and columns:

SELECT * FROM table name

2, Query department branches and columns: (Some columns use commas, to limit, some lines use where conditions to limit)

Select Column Name 1, column name 2 from table name where restriction condition

3. Use the alias of the column in the query:

Use as, use = (assign values from right to left), use spaces

4. Query null value is NULL

5, Sort: ASC Ascending, desc descending

Example:

Select  from where username like ' li% '-- selects all users in the UserInfo table username with Lee start Selectfromwhere payway<> ' Online Banking '--select userinfo form Payway payment method is not equal to "online banking" userid, Usern, payway three columns

userid as User ID, username =username, phone call from UserInfo where username like ' Zhang% '
--Using aliases

SELECT * from userinfo where email is null
--Using IS null

Email is null or email= '
--is null: Never entered data
--": entered data, then deleted

SQL Server Learning Notes (Fri)--Query

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.