Posts by fernandoassiss • 71 points
5 posts
-
0
votes2
answers908
viewsA: INNER JOIN in the same table
Unnecessary to make a inner join with the same table. Use Where: SELECT Agendamento.E3TimeStamp AS Data, Agendamento.Lote, Produtos_values.name as NomeProduto, Produtos_ValueData.TemplateID AS…
-
1
votes1
answer60
viewsA: Background animation does not work on Microsoft Edge
You are using the Web Animations API to create your animations. It is not yet standard for all Browsers, as can be seen here. Microsoft is still considering inserting it in future versions of Edge.…
-
0
votes3
answers451
viewsA: Permissive issues when creating Linux server folders using mkdir
If the complete path of storage_path() does not exist on the server, you must set the recursion parameter as TRUE, to create the full path recursively, see job documentation. If the path already…
-
0
votes1
answer112
viewsA: Why does the cd command not work via ssh on the GOCD?
I couldn’t see anything wrong, if the directory really exists. With the connection established, confirm that the directory actually exists and that its name is correct: ssh root@host 'cd /var/www/…
-
2
votes1
answer504
viewsQ: I need to select sequences of numbers in a field of a table column
I have a 'Text' column in my 'process' table. Text consists of a VARCHAR (220), in this text I need to identify a specific word pattern. In this case a sequence of numbers with a "-" to separate:…