Differences between like and date types in access and SQL Server

Source: Internet
Author: User

Summary of problems recently encountered when using access databases:

I. Usage of like in access

The wildcard usage of like in access is as follows:

"?" Represents any single character; "*" Represents zero or multiple characters; "#" represents any number

So it should be:

Select * From databasename where fieldname like '* XX *'

However, in SQL Server, % Represents zero or multiple characters.

2. How to query date range data of datetime fields in access

If the field is of the time or date type, if you execute select * from [card] Where [datetime] <= '2017-09-20 'and [datetime]> = '2017-09-01' like this, an error is returned in access., "#" should be added before the date field: Select * from [card] Where [datetime] <= #2006-09-20 # And [datetime] >=# 2006-09-01 #

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.