You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select
p_brand,
p_type,
p_size,
count(distinct ps_suppkey) as supplier_cnt
from
partsupp,
part
where
p_partkey = ps_partkey
and p_brand <>'Brand#45'and p_type not like'MEDIUM POLISHED%'and p_size in (49,
14,
23,
45,
19,
3,
36,
9)
and ps_suppkey not in (
select
s_suppkey
from
supplier
where
s_comment like'%Customer%Complaints%' )
group by
p_brand,
p_type,
p_size
order by
supplier_cnt desc,
p_brand,
p_type,
p_size;
Expected behavior
No response
How To Reproduce
No response
Environment
No response
Are you interested in submitting a PR to solve the problem?
Yes, I will!
The text was updated successfully, but these errors were encountered:
Describe the problem
Mysql column storage engine -q16 -debug mode The data obtained is empty and to be fixed
Get data on a blank line:
SQL
Expected behavior
No response
How To Reproduce
No response
Environment
No response
Are you interested in submitting a PR to solve the problem?
The text was updated successfully, but these errors were encountered: