Remove two spaces from the SQL trim () function

Source: Internet
Author: User

1. Remove two spaces from the SQL trim () function
The SQL syntax does not directly remove spaces at both ends, but ltrim () removes the left space rtrim () and the right space.
The SQL trim () function is used together, that is, select ltrim (rtrim (usrname ))

 

2. Select multiple columns for distinct, one of which cannot be repeated, and the other columns take the maximum value.
Goodname goodversion
Item 1.0
Item 2.0
Item 2 1.0
Item 2 2.0
If you want
Item 2.0
Item 2 2.0
Select distinct goodname, goodversion from... No.
When distinct acts on two columns, the two columns are repeated at the same time.
Therefore, a special method is used for processing.
Select max (goodname), max (goodversion) from t_good group by goodname
Grouping with goodname ensures that goodname does not repeat.

 

3. Set the date field to null in SQL Server and use the backspace key to clear the field.
Update Table1 set mydate = NULL;

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.