MySQL− codes (wildcards, formatting)

 0    36 kartičky    sir
stáhnout mp3 Vytisknout hrát zkontrolovat se
 
otázka odpověď
Represents zero or more characters
začněte se učit
%
bl% finds bl, black, blue, and blob
Represents a single character
začněte se učit
_
h_t finds hot, hat, and hit
Represents any single character within the brackets
začněte se učit
[]
h[oa]t finds hot and hat, but not hit
Represents any character not in the brackets
začněte se učit
^
h[^oa]t finds hit, but not hot and hat
Represents a range of characters
začněte se učit
-
c[a-b]t finds cat and cbt
Abbreviated weekday name (Sun to Sat)
začněte se učit
%a
Abbreviated month name (Jan to Dec)
začněte se učit
%b
Month number (0 to 12)
začněte se učit
%c
Day of the month as a numeric value, followed by suffix (1st, 2nd, 3rd, ...)
začněte se učit
%D
Day of the month as a numeric value (01 to 31)
začněte se učit
%d
Day of the month as a numeric value (0 to 31)
začněte se učit
%e
Microseconds (000000 to 999999)
začněte se učit
%f
Hour (00 to 23)
začněte se učit
%H
Hour (00 to 12)
začněte se učit
%h
Hour (00 to 12)
začněte se učit
%I
Minutes (00 to 59)
začněte se učit
%i
Day of the year (001 to 366)
začněte se učit
%j
Hour (0 to 23)
začněte se učit
%k
Hour (1 to 12)
začněte se učit
%l
Month name in full (January to December)
začněte se učit
%M
Month name as a numeric value (00 to 12)
začněte se učit
%m
AM or PM
začněte se učit
%p
Time in 12 hour AM or PM format (hh: mm: ss AM/PM)
začněte se učit
%r
Seconds (00 to 59)
začněte se učit
%S
Seconds (00 to 59)
začněte se učit
%s
Time in 24 hour format (hh: mm: ss)
začněte se učit
%T
Week where Sunday is the first day of the week (00 to 53)
začněte se učit
%U
Week where Monday is the first day of the week (00 to 53)
začněte se učit
%u
Week where Sunday is the first day of the week (01 to 53). Used with %X
začněte se učit
%V
Week where Monday is the first day of the week (01 to 53). Used with %x
začněte se učit
%v
Weekday name in full (Sunday to Saturday)
začněte se učit
%W
Day of the week where Sunday=0 and Saturday=6
začněte se učit
%w
Year for the week where Sunday is the first day of the week. Used with %V
začněte se učit
%X
Year for the week where Monday is the first day of the week. Used with %v
začněte se učit
%x
Year as a numeric, 4-digit value
začněte se učit
%Y
Year as a numeric, 2-digit value
začněte se učit
%y

Podívejte se na podobné kartičky:

MS Access − Wildcards

Chcete-li přidat komentář, musíte se přihlásit.