Posts by Fernando H Matosinhos • 31 points
2 posts
-
1
votes1
answer42
viewsA: Result SQL statement
You can use the STUFF function of SQL Server: The STUFF function inserts a string into another character string. It excludes a specified length of characters from the first string at the initial…
-
2
votes3
answers1407
viewsA: How to transform an Object Array into a Simple Array? Javascript
You can do it: function myFunction(){ const obj = [ {id:0, name:"Jean"}, {id:2, name:"Ricardo"}, {id:4, name:"Letiiicia"}, {id:5, name:"Dai"}, {id:7, name:"Tamy"}, {id:10, name:"Abeu"}] const names…