Difference between revisions of "Manuals/calci/DISTINCT"

From ZCubes Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<div style="font-size:30px">'''DISTINCT () '''</div><br/>
+
<div style="font-size:30px">'''DISTINCT ()'''</div><br/>
  
 
==Description==
 
==Description==
Line 12: Line 12:
 
#DISTINCT(30,23,65,10,0,-5,30,65,0) = 0 10 23 30 65 -5
 
#DISTINCT(30,23,65,10,0,-5,30,65,0) = 0 10 23 30 65 -5
 
#DISTINCT("m","a","l","a","y","a","l","a","m") =m a l y
 
#DISTINCT("m","a","l","a","y","a","l","a","m") =m a l y
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|v=IsDct4jhTVs|280|center|Distinct Subset}}
  
 
==See Also==
 
==See Also==

Latest revision as of 16:03, 11 December 2018

DISTINCT ()


Description

  • This function shows the distinct values from the given array.
  • In ,for the parameter there can be any set of values or any strings.
  • This statement is used to return only distinct (different) values.
  • Suppose in the given values,it may contain many duplicate values and sometimes there is need of any different (distinct) values.
  • The DISTINCT keyword can be used to return only distinct (different) values.

Examples

  1. DISTINCT("Bradley", "Doyle", "Doyle", "Doyle","Arthur") = Bradley Doyle Arthur
  2. DISTINCT(30,23,65,10,0,-5,30,65,0) = 0 10 23 30 65 -5
  3. DISTINCT("m","a","l","a","y","a","l","a","m") =m a l y

Related Videos

Distinct Subset

See Also

References