Home

SQL Keywords: DESC

  

Introduction

The DESC keyword is used to sort the fields of a set. The DESC keyword is used in conjunction with the ORDER BY expression in a SELECT statement. The formula to use is:

SELECT What FROM WhatObject ORDER BY WhatField DESC;

Here is an example:

SELECT EmployeeNumber, FullName FROM Employees ORDER BY FullName DESC;

Here is another example:

SELECT * FROM Employees ORDER BY FullName DESC;

Home Copyright © 2009-2016, FunctionX, Inc.