MS Access functions from W3S

 0    66 フィッシュ    sir
mp3をダウンロードする 印刷 遊びます 自分をチェック
 
質問 答え
Asc
学び始める
Returns the ASCII value for the specific character
Chr
学び始める
Returns the character for the specified ASCII number code
Concat with &
学び始める
Adds two or more strings together
CurDir
学び始める
Returns the full path for a specified drive
Format
学び始める
Formats a value with the specified format
InStr
学び始める
Gets the position of the first occurrence of a string in another
InstrRev
学び始める
Gets the position of the first occurrence of a string in another, from the end of string
LCase
学び始める
Converts a string to lower-case
Left
学び始める
Extracts a number of characters from a string (starting from left)
Len
学び始める
Returns the length of a string
LTrim
学び始める
Removes leading spaces from a string
Mid
学び始める
Extracts some characters from a string (starting at any position)
Replace
学び始める
Replaces a substring within a string, with another substring, a specified number of times
Right
学び始める
Extracts a number of characters from a string (starting from right)
RTrim
学び始める
Removes trailing spaces from a string
Space
学び始める
Returns a string of the specified number of space characters
Split
学び始める
Splits a string into an array of substrings
Str
学び始める
Returns a number as string
StrComp
学び始める
Compares two strings
StrConv
学び始める
Returns a converted string
StrReverse
学び始める
Reverses a string and returns the result
Trim
学び始める
Removes both leading and trailing spaces from a string
UCase
学び始める
Converts a string to upper-case
Abs
学び始める
Returns the absolute value of a number
Atn
学び始める
Returns the arc tangent of a number
Avg
学び始める
Returns the average value of an expression
Cos
学び始める
Returns the cosine of an angle
Count
学び始める
Returns the number of records returned by a select query
Exp
学び始める
Returns e raised to the power of a specified number
Fix
学び始める
Returns the integer part of a number
Format
学び始める
Formats a numeric value with the specified format
Int
学び始める
Returns the integer part of a number
Max
学び始める
Returns the maximum value in a set of values
Min
学び始める
Returns the minimum value in a set of values
Randomize
学び始める
Initializes the random number generator (used by Rnd()) with a seed
Rnd
学び始める
Returns a random number
Round
学び始める
Rounds a number to a specified number of decimal places
Sgn
学び始める
Returns the sign of a number
Sqr
学び始める
Returns the square root of a number
Sum
学び始める
Calculates the sum of a set of values
Val
学び始める
Reads a string and returns the numbers found in the string
Date
学び始める
Returns the current system date
DateAdd
学び始める
Adds a time/date interval to a date and then returns the date
DateDiff
学び始める
Returns the difference between two dates
DatePart
学び始める
Returns a specified part of a date (as an integer)
DateSerial
学び始める
Returns a date from the specified parts (year, month, and day values)
DateValue
学び始める
Returns a date based on a string
Day
学び始める
Returns the day of the month for a given date
Format
学び始める
Formats a date value with the specified format
Hour
学び始める
Returns the hour part of a time/datetime
Minute
学び始める
Returns the minute part of a time/datetime
Month
学び始める
Returns the month part of a given date
MonthName
学び始める
Returns the name of the month based on a number
Now
学び始める
Returns the current date and time based on the computer's system date and time
Second
学び始める
Returns the seconds part of a time/datetime
Time
学び始める
Returns the current system time
TimeSerial
学び始める
Returns a time from the specified parts (hour, minute, and second value)
TimeValue
学び始める
Returns a time based on a string
Weekday
学び始める
Returns the weekday number for a given date
WeekdayName
学び始める
Returns the weekday name based on a number
Year
学び始める
Returns the year part of a given date
CurrentUser
学び始める
Returns the name of the current database user
Environ
学び始める
Returns a string that contains the value of an operating system environment variable
IsDate
学び始める
Checks whether an expression can be converted to a date
IsNull
学び始める
Checks whether an expression contains Null (no data)
IsNumeric
学び始める
Checks whether an expression is a valid number

コメントを投稿するにはログインする必要があります。