Posts by Felipe Guimarães • 55 points
6 posts
-
0
votes0
answers171
viewsQ: Total results by products in oracle table
I have two tables similar to the tables below: TGFCAB |NUNOTA| DTMOV | ------------------| | 1 |01/06/2019| | 2 |02/06/2019| | 3 |03/06/2019| TGFITE |NUNOTA|CODPROD|QTDNEG|VLRUNIT |VLRTOTAL|…
-
0
votes1
answer238
viewsQ: Query in two Oracle tables
How do I query two tables at once? I have two table structures as follows. TGFCAB ___________________ |NUNOTA| DTMOV | ------------------| | 1 |01/06/2019| | 2 |02/06/2019| | 3 |03/06/2019| and…
-
0
votes1
answer48
viewsQ: jinja2 error: jinja2.exceptions.Templatesyntaxerror: Unexpected '%'
My code is generating a " Unexpected '%' error", all symbols being properly correct. I have a route to show the companies Cnpjs in a list, follows function of the listing below:…
-
1
votes1
answer36
viewsA: Leave the background "crooked" - WORDPRESS
Just save a PNG image from with the color of the div, and put it under the same. Or you can use the code. .box2 { background-color: #FF895B; position: relative; height: 500px; } .box2:after {…
wordpressanswered Felipe Guimarães 55 -
2
votes1
answer39
viewsA: Does anyone know a function in excel or other program to count the amount of numbers existing between a range of numbers?
In Excel, you can use the CONT.NÚM function to get the number of entries in a number field that is in a range or a number matrix. For example, you can insert the following formula to count the…
excelanswered Felipe Guimarães 55 -
2
votes0
answers280
viewsQ: Flask not creating Sqlite database via Slqalchemy
Good afternoon to all! No way my code is creating the database via SQL Alchemy, follow the code snippet. from flask_sqlalchemy import SQLAlchemy app = Flask(__name__)…