Posts by Francinette Borges • 1 point
2 posts
- 
		-2 votes1 answer26 viewsA: MYSQL query date range and any other date in the same queryFrom what I understand, you are trying to retrieve dates that are between the range 2021-06-01 and 2021-06-05, and that are not equal to 2021-06-04. For this situation the BETWEEN should work. Try… 
- 
		0 votes1 answer23 viewsA: Valueless results on variables, values added in Testemain class are not being used in Calculator class methodsYou need to assign the values passed as parameters in the constructs to the private attributes of the class, so the methods will work successfully. The way it is at the moment methods are working…