Questions tagged [multiple-results]
57 questions
1
vote
1 answer
PostgreSQL: Table filtering-I am trying to filter a table so I can keep all relevant results (including duplicates) based on the result of one column
I am trying to write a query that will help me filter a table like the following:
order_number | line_type | price | grand_total
---------------------------------------------
34 | promo | 4.35 | 86.25
34 | tax | 2.50 …

R.Illum
- 25
- 4
1
vote
2 answers
jQuery autocomplete multiple _renderItem
I would like the suggestions that autocomplete gives me not only appear in the dropdown below the input field. So I want to show the current suggestions in two containers.
$( "#project" ).autocomplete({
minLength: 0,
source: projects,
…

Dieter Information
- 1,045
- 2
- 8
- 13
1
vote
2 answers
can't find multiple values in SQL
I have a DB full of players and I am trying to create a page to register them into a specific tournament. The tournament director will search for players by username (which is only "firstname.lastname").
The problem I'm experiencing is that when I…

Tunna182
- 343
- 3
- 16
1
vote
2 answers
StoredProcedure returning multiple resultset Sql To Linq using designer
I want to get multiple resultsets from a storedProc using sql to linq. I was not able to generate it from designer so I wrote below code in designer.cs file. But whenever I add something to designer, it refreshes the designer with the markup in…

IsmailS
- 10,797
- 21
- 82
- 134
1
vote
2 answers
Ruby on Rails Previous Searches Display when Typing in Search Bar
Ok so what I have is a library database system where a user can type in books in a search bar and then the books that match their search are displayed when they click enter. What I want to do is get it so that when the user types "a" into the search…
user4227507
1
vote
0 answers
How to write a script in R that will run a function multiple times but save to different variables
I was given a function that runs analyses on datasets so I'll try my best to explain my problem.
Say I have a function: functionx()
This function will run an analysis on a data matrix: matrixd. However, I need to run functionx() 50 times on…

Brian Lee
- 39
- 7
1
vote
2 answers
join results of two mysql queries on the same table
I have the intuition that I'm missing something simple, so please excuse me if it's a stupid question but I haven't been able to find an answer here.
I'm treating a database with usage behaviors. We have one row per user, with date and time spent…

ProgressiveMonkey
- 315
- 1
- 4
- 11
1
vote
2 answers
ZF2 Mysql rollback commit function
I was wondering if there is a function such as mysql rollback commit available in
Zend Framework 2?
I need to insert multiply rows in the same tabel coming from one form submit.
Nick

directory
- 3,093
- 8
- 45
- 85
1
vote
1 answer
Multiple response for a single request in Twisted
I wanted to be able to receive multiple response from a server after sending one single request. This is implemented all in twisted.
The Server:
class HandleReq(resource.Resource):
def __init__(self):
resource.Resource.__init__(self)
…

Gheghen
- 371
- 1
- 5
- 12
0
votes
1 answer
Zend join left with multiple result from left table
I am trying to select one item form the items table and join the second table (images). The table images will have multiple results for each item. The problem is that the result join is bringing just one result instead of an array with all images…

Bertrand
- 13,540
- 5
- 39
- 48
0
votes
0 answers
Can you take the results of a dynamic query CTE based on parameters and feed it to another CTE?
This is just a generic question.
I have a CTE1 that takes a parameter. It has a dense rank in the select statement and RN<5 in the where statement, so that essentially it runs 5 times and gives me a set of results. So it spits out…

Tami
- 17
- 6
0
votes
0 answers
Multiple nginx rewrite rule, with unknown count of parameters
I have GET request e.g.
example.com/aaa/bbb/ccc/ddd/eee/fff/ggg/hhh/aaa.png
and I want output like:
example.com/?p1=aaa&p2=bbb&p3=ccc&p4=ddd&p5=eee&p6=fff&p7=ggg&p8=hhh&p9=aaa.png
or something like this, so that I can get an array in php…
0
votes
0 answers
Tesseract Tess4J giving different results whether running in debug or run mode
I am running Tesseract in Java 11.0.16 (Tess4j 5.7.0) for getting all words from an image.
The process uses no threads. If I run it on 'Run' mode I get list of 174 words. If I run the exact same one with the same image in 'Debug' mode with no…

Trantor
- 1
- 1
0
votes
0 answers
Experience with MARLlib
I trained some MPE environments (simpe_tag,...) in MALlib to see how well it trains.... but I came to a slight problem viewing the results I made and those they uploaded.
I am realtivly new to MARL and have no idea if the are good or not.
I tried…

Char
- 1
- 1
0
votes
0 answers
How I can collect the results of veins example?
I am using veins example and I replaced the scenario by real map of open street map. It work well but I do not know how I collect the result to prove the work.
I expected to have a result for example the delay and how the accident message delivered…

Siham
- 1