Solution to Field Mismatch when Union all is used for query

Source: Internet
Author: User

A small problem may be solved by the definition limitation thinking in the book.


Definition:

The union or union all operator is used to merge the result sets of two or more select statements.

Note that the SELECT statement inside the Union must have the same number of columns. Columns must also have similar data types. In addition, the columns in each select statement must be in the same order.


Scenario:

When there are differences between individual fields in the two select result sets, union or union all is required.


Solution:

A small field in a result set can be replaced by a null value or a fixed value, and the alias is used to meet the consistent requirements of the column name.


To merge the result of student and teacher, the teacher wood has the name column.


Select name, age from studentunion allselect 'none' as name, age from teacher


Note:

There may be Type Mismatch. In this case, you only need to use cast () for type conversion.



Solution to Field Mismatch when Union all is used for query

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.