Click here to Skip to main content
15,891,375 members

Comments by Member 11807654 (Top 24 by date)

Member 11807654 3-Dec-22 9:49am View    
Deleted
Thank you. Can you explain more? How can save the join result in a view and use it several times in other queries? You mean something like the following link?
https://www.itsolutionstuff.com/post/how-to-use-mysql-view-in-laravelexample.html
Member 11807654 3-Dec-22 7:22am View    
thanks a lot. it worked for me :)
Member 11807654 1-Dec-22 3:15am View    
yes. I added it. I do not know why, but now it gets this error: "The POST method is not supported for this route. Supported methods: GET, HEAD." when I change the method in ajax to "get", it does not send the parameter to controller!!! I have a select box in a form with post method and I wrote the ajax code for it. is the error related to the form? when I change the value of select box, this error occurs.
Member 11807654 18-Nov-17 0:35am View    
I just want to merge sub-trees into bigger trees.
Member 11807654 11-Aug-17 10:41am View    
thanks, but my map is a multimap.I found a solution but I do not know how to change it to work on a multimap. the solution was map.merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction) instruction(found in: http://farenda.com/java/java-util-map-merge-key-value-bifunction/). it sums the value of the members, but I do not want. I just want to merge the two members into one member of the map. how the remapping function can be written in my code?