Top "Distinct-values" questions

Use this tag for questions related to Distinct Values, i.e. values that are distinct/unique from the values in a collection.

get Distinct Values with Sorted Data

I need a Query to get distinct keys with sorted on basis of score in Mongodb 1.6.5 I have records Like {…

sorting mongodb distinct-values
How to make a dictionary from a text file with python

My file looks like this: aaien 12 13 39 aan 10 aanbad 12 13 14 57 58 38 aanbaden 12 13 14 57 58 38 aanbeden 12 13 14 57 58 38 aanbid 12 13 14 57 58 39 aanbidden 12 13 14 57 58 39 aanbidt 12 13 14 57 58 39 aanblik 27 28 aanbreken 39 ... I want to make a …

python dictionary distinct-values
Creating distinct list from existing list in Java 7 and 8?

If I have: List<Integer> listInts = { 1, 1, 3, 77, 2, 19, 77, 123, 14, 123... } in Java what is an efficient way of creating a List<…

java list java-8 java-7 distinct-values
How to use Distinct function in influxDB

I am using influx DB and issuing command, SELECT * FROM interface Below is the out put- interface time element path …

distinct influxdb distinct-values
java 8 how to get distinct list on more than one property

How can one get the distinct (distinct based on two property) list from a list of objects. for example let …

java lambda java-8 java-stream distinct-values
pyspark: count distinct over a window

I just tried doing a countDistinct over a window and got this error: AnalysisException: u'Distinct window functions are not supported: …

count pyspark window-functions distinct-values
remove duplicate values of only one column value from all the available columns in sql query

I have a sql query with three columns .I want to remove any duplicate value exits in beam_current column.…

sql-server distinct-values
Insert distinct values SQL Server

I'm trying to insert unique values into a table from a View. I have a table as below: the "fromView" …

sql-server insert distinct-values
MySQL How to Return Unique/Distinct Results?

I'm running the following MySQL query to find cars that don't have manuals (and have black wheels, etc.) SELECT `cars`.* …

mysql sql distinct-values
C# Array, How to make data in an array distinct from each other?

C# Array, How to make data in an array distinct from each other? For example string[] a = {"a","b","a","…

c# arrays distinct-values