namespace Strata.SqlTools.SqlBreakdown.Enums.SQL;
///
/// Specifies ordinal position from the beginning.
///
public enum PositionFromFront
{
///
/// No position specified.
///
None = -1,
///
/// First position.
///
First = 0,
///
/// Second position.
///
Second = 1,
///
/// Third position.
///
Third = 2,
///
/// Fourth position.
///
Fourth = 3,
///
/// Fifth position.
///
Fifth = 4
}