Home  Fees/Services   Access Templates   Tutorials   Tutorial Downloads   Articles  Search  Contact  Privacy  Links
Select Distinct, Select Distinctrow, Select Top, Select All Predicate Query: Top Percent All Distinct  
Home > Tutorials > Query Tutorials > Predicate Query Example
 

 

 


SQL Predicate Examples

SQL Predicates are simple but important to understand for full use of the query programming language. There are five predicate functions:

  • Select All

  • Select Distinct

  • Select Distinctrow

  • Select Top

  • Select Top Percent

The ALL command is the default when you use a select statement:


Select * from Employees

is equivalent to entering

Select All * from Employees The Distinct command is often confused with the distinctrow keyword.  Here is an example of the difference:

Select Distinctrow Last_Name from Employees

This query won't necessarily retrieve a distinct list of employee last names.  If there are duplicates last names and ANY other field has different data between the two duplicate name records then you will get both records even though they have the same last name.  Whereas:

Select Distinct Last_Name from Employees

Use the distinct directive to query unique records.  Distinct will retrieve a unique list of employee last names because the Distinct command only looks at the fields you are returning in the query.  I have never had a reason to use the Distinctrow function because our tables never have duplicate rows.

Select TOP (aka Top Values/Top Values) is explained in an example page: Select Top 10 Records, but we will review it here combined with the PERCENT option:

Select Top 10 Last_Name from Employees
Order By Age desc

Using the Top 10 example tells the query engine to return 10 records, in this case it will be the 10 oldest employees.  Here is the percent option:

Select Top 10 Percent Last_Name from Employees Order By Age desc

In this case, if you had 1000 employees in the Employee table you would retrieve 100 records containing a list of the 100 oldest employees.

Now you know all about the use of predicates in the Microsoft Access programming language.





Contact Information

Copyright 2000-2012 Blue Claw Database Design, LLC

Query Tutorials Index:
SQL Too Complex Query
SQL Aggregate Query
SQL Not In Operator
SQL Choose Function
SQL Crosstab Query
SQL DateTime Query
SQL Delete Query
SQL External Table Query
SQL Report Filter Query
SQL Group By Query
SQL Having Query Clause
SQL Histogram Query
SQL Insert Into Query
SQL Master Detail Update
SQL Order By Query
SQL Parameter Query
SQL Predicate Query
SQL Self Join Query
SQL Scalar SubQuery
SQL Master Detail Query
SQL Select Query
SQL Select Top
SQL Union Query
SQL Update Query

MultiSelect Parameter Forms Query Tutorial