Posts by Fernando Henrique Gonçalves • 145 points
14 posts
-
0
votes1
answer427
viewsQ: Separate results from an SQL query by date
I am creating an SQL query that will be used in a system/report and came across the following problem. It has two results, one that displays the total time between the days searched and the other…
-
0
votes1
answer311
viewsQ: Data Passing from an SQL Query to an HTML Table
I am developing a code and the section related to displaying the data that is in SQL for HTML Table are not working. In this case I created a function in my DAO with the SQL query and passed to a…
-
0
votes1
answer51
viewsQ: Add up the Count results
I am developing a system, and in case I have the following query in SQL (SQL Server), the query is as follows USE REPORT GO SELECT TOP 10 r.[PONTO DE ATENDIMENTO] , r.[CIRCUITO], count…
-
1
votes1
answer67
viewsQ: How to make a query in SQL that brings a count of some results
Next, I am developing a query in SQL and the purpose of this query is to Count the records that reached the value below 99,7%(As I have the data for this already calculated and transformed in…
-
1
votes0
answers39
viewsQ: Sum of data from an array using condition
I’m developing a system, and I’m doing the following test. In this case, I have a number of records related to the drop of links and I need to add these results if the difference between them is…
-
1
votes0
answers50
viewsQ: Users Evaluation System with single notes
I am developing an employee assessment system for my team. In this case, this system would be done as follows. A user who will evaluate will be able to make 5 reviews only. These 5 ratings may be…
-
1
votes2
answers4225
viewsQ: Convert Varchar to Time in SQL with data longer than 24 hours
I am developing an SQL query and in case I need to convert a field of hours that is in varchar for time to then make a media of this field (I will use Datediff together). The problem is that CONVERT…
-
1
votes0
answers45
viewsQ: Select search by sampling periods
I am creating an application, and in case this application will have several filters for the user. One of this filter is the famous search by date. In this case, the user searches between the two…
-
2
votes1
answer217
viewsQ: Use Datepart as Query parameter
I’m developing a system and I’m bumping into an SQL query that consists of the user searching for Date and will have the option to choose if the query will be made adding Weekend to these dates,…
-
2
votes0
answers43
viewsQ: Tabs inside modal returning data
I am creating a page that displays the data that was registered and within this data I have the option to View, Edit, Terminate and Delete the record. In this case, the option to View, Edit and Quit…
-
1
votes0
answers58
viewsQ: Upload Change
I am developing a system with Upload files in PHP and in the case of inserting files in the form by Upload, the user can also delete files and include new attachments in Upload but these two cases…
phpasked Fernando Henrique Gonçalves 145 -
0
votes2
answers33
viewsA: Creating two links with path of a Explode
That part worked. Now the second question concerning the exclusion of the Link is missing. I am doing so in the case if($upload == '' || $upload == 'Sem arquivo anexo') { echo 'Não existem arquivos…
-
0
votes2
answers33
viewsQ: Creating two links with path of a Explode
I am developing a project and next to the form, the user can upload a file. In this case, the registration part next to the upload(s) I already managed to do, now I am creating the display/change of…
-
3
votes1
answer378
viewsQ: Changing Mask using Jquery Mask Plugin?
I am creating a Web system and in this system there is the phone field, in this phone field, the user can put an 0800 or else a standard conventional phone DDD-Suffix-Prefix. Even all right, I…