bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MS Access Mid() Function

Example

SELECT Mid("SQL Tutorial", 3) AS ExtractString;

Definition and Usage

The Mid() function extracts some characters from a string (starting at any position).

Syntax

Mid(
string
,
start
,
length
)

Parameter Values

ParameterDescription
stringRequired. The string to extract from
startRequired. The start position
lengthOptional. The number of characters to extract. If omitted, this function returns all characters from the start position

Technical Details

Works in:From Access 2000

Previous

MS Access LTrim() Function

Next

MS Access Replace() Function