Answer:
i think its the second one
Explanation:
brainliest pls
 
        
                    
             
        
        
        
<span>An attribute in a relation of a database that serves as the primary key of another relation in the same database is called a</span>
        
             
        
        
        
Answer:
C.  Use the SOAP API to maintain the related SObject_share records
Explanation:
In order to ensure that Universal Containers have complete control over the system, the company needs to use certain requirements. This is to ensure that non-authorized persons do not have any access to the information. Based on the information provided in the question, the correct option is option C. 
 
        
             
        
        
        
Answer:
select style_name,br.name as brewery,count(beer_id) as Num
from beerdb.beers be  
inner join beerdb.styles st
on be.style_id = st.style_id
join beerdb.breweries br on  
be.brewery_id = br.brewery_id
group by style_name , br.name  
having count(beer_id)>=10
order by style_name, num desc
Explanation: