In SQL statements my usersys table is like this submit_user table is my SQL statement: SELECTfullname, sum (jkd) & nbsp; FROMsubmit_userWHEREfullnameIN (contains the problem of in SQL statements)
My usersys table is like this.
The submit_user table is
My SQL statement is:
SELECT fullname, sum (jkd)
FROM submit_user
WHERE fullname
IN (
SELECT fullname
FROM usersys
WHERE Department = 'photo and Video production'
)
AND submit_date
BETWEEN '2017-08-09'
AND '2017-08-26'
But the result is incorrect. The result is
What I should have gotten is the sum of all the jkd personnel in the department, but it's strange that only one person is available. please help me to see where is the problem?
------ Solution --------------------
SELECT fullname, sum (jkd)
FROM submit_user
WHERE fullname
IN (
SELECT fullname
FROM usersys
WHERE Department = 'photo and Video production'
)
AND submit_date
BETWEEN '2017-08-09'
AND '2017-08-26'
Group by fullname
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