The use of switch instead of the case while then else end in Access is not supported

Source: Internet
Author: User

The use of switch instead of the case while then else end in Access is not supported

The main point here is to implement multiple fields in a table, compare multiple fields and then get the maximum or minimum value to handle

Case and then else end example

Selece F1,f2, (case if F1>f2 then F1 else F2 end) as a from table

But finding that in Access does not make

Next, use the switch supported by Access instead of the following

SELECT * FROM (    select Topvalue,bottomvalue,leftvalue,rightvalue,    switch    (        a > B,a,        a <= b,b    ) as result    from    (        select Topvalue,bottomvalue,leftvalue,rightvalue,        switch        (            Topvalue > Bottomvalue,topvalue,            topvalue <= bottomvalue,bottomvalue        ) as a,        switch        (            leftvalue > Rightvalue,leftvalue,            leftvalue <= rightvalue,rightvalue        ) as B        from Imagehandle    )) Order BY result Desc
The query results are as follows


Record this first, haha

The use of switch instead of the case while then else end in Access is not supported

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.