The set-operations tag has no wiki summary.
-1
votes
2answers
61 views
T-SQL: Set Operations Equivalent for cursor operation
I have a table like below where I iterate using a cursor to replace one value for another.
Is there a way to do this using set operations in SQL?
In this example, I would replace the column with ...
1
vote
2answers
65 views
Python add a string to all set's elements
I'm wondering what is the Python way to perform the following -
Given a set :
s = {'s1','s2','s3'}
I would like to perform something like :
s.addToAll('!')
to get
{'s1!','s2!','s3!'}
Thanks!
...
1
vote
1answer
45 views
Select unrelated ids on relate / lookup table
I have seen various examples for this, but I can't find a definitive example of how to return all rows from table_A that are not related to a row in table_B using relate table_A_B without a given ...
0
votes
1answer
308 views
SQL Using to_char(null), to_number(null), etc in set operators with Oracle
I'm a student entering the world of SQL for the first time and I cannot find any clear and understandable documentation on how to use to_somedatatype(null) to substitute for missing columns in a ...
0
votes
3answers
89 views
Difference between union() and union_update() in sets, and others?
Python sets have these methods:
s.union(t) s | t new set with elements from both s and t
s.update(t) s |= t return set s with elements added from t
Likewise, there's also these:
...
3
votes
2answers
106 views
Assigning one set to another and when Clear is performed.Both the sets are getting cleared
1.Initially created two sets.
2.Added elements to one set.
3.Assigned one set to another.
4.If clear is called on one set,both the sets are getting cleared.
Can anyone help in figuring out the ...
2
votes
6answers
84 views
Extract the different recored in two table
I have two tables - table1 and table2.
Both tables have the same columns.
I want to extract the record differences - meaning extract records in table1 not in table2, and extract records in table2 not ...
6
votes
4answers
3k views
Union of dict objects in Python [duplicate]
How do you calculate the union of two dict objects in Python, where a (key, value) pair is present in the result iff key is in either dict (unless there are duplicates)?
For example, the union of ...
2
votes
4answers
582 views
Compare two folders and copy/link unique entries to a new folder
How can I copy all unique files from two source folders to a new destination folder?
As a set operation: How can I compute the difference between two folders?
-1
votes
1answer
1k views
R: How can I find the intersection of elements from two rows of a dataframe?
I'm just getting started with R, and I'm wondering how I can find the intersection of the elements from two rows of a dataframe. I tried
intersect(thing[1,],thing[2,])
but it gave me a complete ...
3
votes
1answer
361 views
Porting set operations from R's data frames to data tables: How to identify duplicated rows?
[Update 1: As Matthew Dowle noted, I'm using data.table version 1.6.7 on R-Forge, not CRAN. You won't see the same behavior with an earlier version of data.table.]
As background: I am porting some ...
0
votes
1answer
155 views
Set operations in DBIx::Class
What is the best way to perform set operations using DBIx::Class?
I saw that one solution would be to create a Result Source based on my query, but my conditions will be defined by the user and I don ...
0
votes
2answers
312 views
Oracle Set operator query
Have a SQL query on Oracle 11g which returns the count of whether a record having certain ID and status exists within +/- 15 minutes range in a table.
Now I wish to ignore the current date by adding ...
0
votes
4answers
262 views
Performing “Optimized” set Operations on java.util.ArrayList or in SQL
This is the first time I need to ask question to get my query solved before today previous threads were able to solve my queries.
Scenario:
I have two tables(lets say A & B) in a database with ...
0
votes
3answers
1k views
Need to find Basic Operations Sets Union/Intersect/Symmetric Difference JAVA
Need to finish implementing this to use UseSet class. Not sure if what I have implemented is 100% correct.
However I need help with the Union and SysDiff.
public class Set
{
private ...
2
votes
1answer
280 views
Set operations in Appengine datastore
I assume there's no good way to do so, but if you had to, how would you implement set operations on Appengine's datastore?
For example given two collections of integers, how would you store them in ...
4
votes
2answers
2k views
How to perform set subtraction on arrays in C#?
What's the simplest way to perform a set subtraction given two arrays in C#? Apparently this is dead easy in Ruby. Basically I just want to remove the elements from array a that are in array b:
...
1
vote
1answer
415 views
Union, intersect, difference large IntSet in O(m+n) times
From my question
Insert element to ArrayList with ascending order and no duplicate elements
I've done my insert method.
Now I try to find out how to build union, intersection, and difference ...
13
votes
6answers
1k views
What does `**` mean in the expression `dict(d1, **d2)`?
I am intrigued by the following python expression:
d3 = dict(d1, **d2)
The task is to merge 2 dictionaries into a third one, and the above expression accomplishes the task just fine. I am ...
15
votes
3answers
2k views
Quickest way to find the complement of two collections in C#
I have two collections of type ICollection; c1 and c2. I'd like to find the set of items that are in c2 that are not in c1 where the heuristic for equality is the Id property on MyType.
What is the ...
2
votes
3answers
481 views
Finding Set Complement in Unix
Given this two files:
$ cat A.txt $ cat B.txt
3 11
5 1
1 12
2 3
4 2
I want to find lines number that is in A "BUT NOT" in ...
455
votes
16answers
131k views
How can I merge (union) two Python dictionaries in a single expression?
I have two Python dictionaries, and I want to write a single expression that returns these two dictionaries, merged. The update() method would be what I need, if it returned its result instead of ...
