0
votes
1answer
24 views
How to concatenate multiple rows, where fieldnames are duplicated?
I am using SQL.
Here is an example of my table:
(There are actually thousands of rows like these, with varying course numbers.)
Course No | Meeting Day | Course Name | Instructor …
2
votes
4answers
33 views
Oracle: Way to aggregate concatenate an ungrouped column in grouped results
Hi,
I have a query with several aggregate functions and then a few grouped columns. I want to take one of the grouped columns out of the group and perform some sort of aggregate …
1
vote
1answer
14 views
How can I concatenate set of results in MySQL?
I would like to join results returned in the set in MySQL with a comma as a separator string.
For example, set returned contains:
COLUMN_X
john
jerry
maria
joseph
gugla
I would …
1
vote
5answers
301 views
Why can I not concatenate two strings and assign them to a symbol?
. . . as in this example:
helloworld.rb:1: syntax error, unexpected '=', expecting $end
:helloworld = "hello ".concat("world")
I thought if I use concat I'm modifying the string …
3
votes
5answers
228 views
How many different ways are there to concatenate two files line by line using Perl?
Suppose file1 looks like this:
bye bye
hello
thank you
And file2 looks like this:
chao
hola
gracias
The desired output is this:
bye bye chao
hello hola
thank you gracias
…
-2
votes
0answers
42 views
How to Concatenate in single line if the parameter/variable is multiline [closed]
How to Concatenate in single line if the parameter/variable is multiline
0
votes
4answers
293 views
Oracle SQL, concatenate multiple columns + add text
So I basically wanna display this (whole row in ONE column):
I like [type column] cake with [icing column] and a [fruit column].
The result should be:
Cake_Column
I like choco …
1
vote
4answers
170 views
How to concatenate multple python source files into single file
(Assume that: application start-up time is absolutely critical; my application is started a lot; my application runs in an environment in which importing is slower than usual; many …
0
votes
2answers
59 views
Paste two text lists (one list a file) into one list separated by commas
An example of the process/output would be:
File1:
hello
world
File2:
foo
bar
Resulting file after concatenation:
File3:
hello;foo
world;bar
For a large list of non-predi …
0
votes
5answers
98 views
jQuery passing element ID into jquery statement?
I'd like to pass the ID of an element into a function which then calls jQuery. However, I'm stumped as to how to actually take the ID variable and concatenate it with other text in …
2
votes
4answers
165 views
MS Access 2003 - Concatenating Field Types of Same ID on a Form
Ok so a guy at work has a little access database he uses to keep track of things. He has this form that he uses that already queries what he needs and produces the results on a for …
0
votes
5answers
148 views
How to concatenate vars in c programmed pic?
Hi guys, I programming a 16f84a pic in hitech C to drive a hd44780 lcd. So far I've got the lcd initialized and can write individual characters and strings to the lcd. Now I need t …
1
vote
3answers
134 views
Need to concatenate varying number of cells using Macro
I need to concatenate a column of cells based on a variable in a previous cell. This will continue on until the specified variable changes. For example:
A B C D E
1 x @1 …
1
vote
3answers
217 views
How to concisely concatenate strings in Tcl?
I can easily concatenate two variables, foo and bar, as follows in Tcl: "${foo}${bar}".
However, if I don't want to put an intermediate result into a variable, how can I easily co …
6
votes
9answers
845 views
Concatenating strings in C, which method is more efficient?
Hi, I came across these two methods to concatenate strings:
Common part:
char* first= "First";
char* second = "Second";
char* both = malloc(strlen(first) + strlen(second) + 2);
…
