Posts by JAVASTO • 1 point
2 posts
-
0
votes2
answers55
viewsQ: How to use Reactdom to create Buttons through conditions
How can I create these Buttons within my <div className="box-statusA"> when arriving in the indices of the status chosen import React, {useState} from 'react'; import ReactDOM from…
-
0
votes1
answer29
viewsQ: Counting supervisors in pgAdmin
How can I list the name of each supervisor with the amount of supervised. select f.NomeFunc, s.ID_Superv from Funcionario f inner join Funcionario s on s.ID_Superv = f.ID_Func having…