November 1, 2006 at 12:54 pm
Hello All
I had a fellow employee present me with the following syntax for a query.
SELECT
Col1
FROM Table1
WHERE { fn LENGTH(Col1) } > 0
Apparently this syntax was produced when he used the "New View" Gui in SQL 2005. I generally never use the GUI, so i would have written the statement like this
SELECT Col1
FROM Table1
WHERE LEN(Col1) > 0
Can someone explain the fn... syntax, or provide a help file reference? Is it something I should be exploring? I have never seen it before and have been unsuccessful in locating a good help file reference.
Thanks in advance
Steve
November 1, 2006 at 1:39 pm
hadn't seen it before either; tested it and it works on my sqk2k machine:
SELECT name
FROM sysobjects
WHERE { fn LENGTH(name) } > 30
[edited] sure enough, it's in the BOL:
You can call a number of functions when you are building an expression, including:
For more information, see Functions.
If you are creating queries (not views, stored procedures, or triggers) that might be run against different databases, you can also use ODBC functions. ODBC syntax includes the "fn" qualifier in front of the function name and braces around the entire function. For example, the following expression uses an ODBC function to convert text to lowercase letters:
{fn LCASE ( address ) }
The Query Designer can help you work with functions by:
For information on ODBC, see the Data Access Services section of the MSDN® Online Library Microsoft Web site. For more information on functions, see User-Defined Functions.
Note You can use a special set of functions, the aggregate functions such as SUM( ) and AVG( ), to create queries that summarize data. For details, see Summarizing and Grouping.
The following table contains samples of string functions. For more information, see String Functions and Using String Functions.
Function | Description | Example |
---|---|---|
LCASE( )1, LOWER( ) | Converts strings to lowercase |
Displays a last name after the first character is converted to uppercase and the remaining characters to lowercase. |
LTRIM( ) | Removes leading spaces from a string |
Displays an address column after extraneous spaces are removed from the front. |
SUBSTRING( ) | Extracts one or more characters from a string |
Displays the first three characters (the area code) of a phone number. |
UCASE( )1, UPPER( ) | Converts strings to uppercase |
|
1 If calling as an ODBC function, use syntax such as: { fn LCASE(
text) }
.
The following table contains samples of date functions. For more information, see Date and Time Functions.
Function | Description | Example |
---|---|---|
DATEDIFF( ) | Calculates an interval between two dates. |
Locates all employees hired more than five years ago. |
DATEPART( ) | Returns the specified portion of a date or datetime column, including the day, month, or year. |
Displays only the year in which an employee was hired (not the full date). |
CURDATE( )1, GETDATE( ) or DATE( ) | Returns the current date in datetime format. This function is useful as input for many other date functions, such as calculating an interval forward or backward from today. |
|
1 If calling as an ODBC function, use syntax such as: { fn CURDATE() }
.
The following functions are typical of those available in many databases. Refer to Mathematical Functions for more information.
Note You can use the aggregate functions AVG( ), COUNT( ), MAX( ), MIN( ), and SUM( ) to create averages and totals in your report. For details, see Summarizing and Grouping.
Function | Description | Example |
---|---|---|
ROUND( ) | Rounds a number off to the specified number of decimal places |
Displays a total price based on a discount, then rounds the results off to two decimal places. |
FLOOR( ) | Rounds a number down to the nearest (smallest) whole number |
Rounds all prices in the |
CEILING( ) | Rounds a number up to the nearest whole number |
Copies the |
The following functions are typical of those available in many databases. For more information, see System Functions.
Function | Description | Example |
---|---|---|
DATALENGTH( ) | Returns the number of bytes used by the specified expression |
Lists the number of bytes required for the combination of last and first names. |
USER( )1, USER_NAME( ) | Returns the current user name |
Creates a list of customers for the salesperson who runs the query. |
1 If calling as an ODBC function, use syntax such as: { fn USER() }
.
The following functions illustrate utility functions available in many databases. For more information, see Functions.
Function | Description | Example |
---|---|---|
CONVERT( ) | Converts data from one data type into another. Useful to format data or to use the contents of a data column as an argument in a function that requires a different data type. |
Displays a date with a caption in front of it; the CONVERT( ) function creates a string out of the date so that it can be concatenated with a literal string. |
SOUNDEX( ) | Returns the Soundex code for the specified expression, which you can use to create "sounds like" searches. |
Searches for names that sound like "Michael". |
STR( ) | Converts numeric data into a character string so you can manipulate it with text operators. |
Displays the |
Lowell
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply