MySQL− codes (wildcards, formatting)

 0    36 フィッシュ    sir
mp3をダウンロードする 印刷 遊びます 自分をチェック
 
質問 答え
Represents zero or more characters
学び始める
%
bl% finds bl, black, blue, and blob
Represents a single character
学び始める
_
h_t finds hot, hat, and hit
Represents any single character within the brackets
学び始める
[]
h[oa]t finds hot and hat, but not hit
Represents any character not in the brackets
学び始める
^
h[^oa]t finds hit, but not hot and hat
Represents a range of characters
学び始める
-
c[a-b]t finds cat and cbt
Abbreviated weekday name (Sun to Sat)
学び始める
%a
Abbreviated month name (Jan to Dec)
学び始める
%b
Month number (0 to 12)
学び始める
%c
Day of the month as a numeric value, followed by suffix (1st, 2nd, 3rd, ...)
学び始める
%D
Day of the month as a numeric value (01 to 31)
学び始める
%d
Day of the month as a numeric value (0 to 31)
学び始める
%e
Microseconds (000000 to 999999)
学び始める
%f
Hour (00 to 23)
学び始める
%H
Hour (00 to 12)
学び始める
%h
Hour (00 to 12)
学び始める
%I
Minutes (00 to 59)
学び始める
%i
Day of the year (001 to 366)
学び始める
%j
Hour (0 to 23)
学び始める
%k
Hour (1 to 12)
学び始める
%l
Month name in full (January to December)
学び始める
%M
Month name as a numeric value (00 to 12)
学び始める
%m
AM or PM
学び始める
%p
Time in 12 hour AM or PM format (hh: mm: ss AM/PM)
学び始める
%r
Seconds (00 to 59)
学び始める
%S
Seconds (00 to 59)
学び始める
%s
Time in 24 hour format (hh: mm: ss)
学び始める
%T
Week where Sunday is the first day of the week (00 to 53)
学び始める
%U
Week where Monday is the first day of the week (00 to 53)
学び始める
%u
Week where Sunday is the first day of the week (01 to 53). Used with %X
学び始める
%V
Week where Monday is the first day of the week (01 to 53). Used with %x
学び始める
%v
Weekday name in full (Sunday to Saturday)
学び始める
%W
Day of the week where Sunday=0 and Saturday=6
学び始める
%w
Year for the week where Sunday is the first day of the week. Used with %V
学び始める
%X
Year for the week where Monday is the first day of the week. Used with %v
学び始める
%x
Year as a numeric, 4-digit value
学び始める
%Y
Year as a numeric, 2-digit value
学び始める
%y

類似のフラッシュカードを参照してください。

MS Access − Wildcards

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