MySQL – functions, administrative commands, datatypes

 0    161 flashcards    sir
mp3 indir Baskı oynamak kendini kontrol et
 
soru język polski cevap język polski
Returns the ASCII value for the specific character
öğrenmeye başla
ASCII(text)
Returns the length of a string (in characters)
öğrenmeye başla
CHARACTER_LENGTH(text)
=CHAR_LENGTH(text)
Concatenates two or more expressions together
öğrenmeye başla
CONCAT(arg1, arg2, ...)
Concatenates two or more expressions together with a separator
öğrenmeye başla
CONCAT_WS(sep, arg1, arg2, ...)
Returns the index position of a value in a list of values
öğrenmeye başla
FIELD(arg1, arg2, ...)
Returns the position of a string within A LIST OF strings
öğrenmeye başla
FIND_IN_SET(searched_string, s1, s2, s3, ...)
Formats a number to a format like "#,###,###.##", rounded to a specified number of decimal places
FORMAT(12678.90, 2)
öğrenmeye başla
FORMAT(number, decimals)
"12,678,90"
Inserts a string within a string at the specified position and for a certain number of characters
öğrenmeye başla
INSERT(text, position, n, s)
n − number of characters to replace
Returns the position of the first occurrence of a string in another string
öğrenmeye başla
INSTR(text, s)
Converts a string to lower-case
öğrenmeye başla
LCASE(text)
=LOWER(text)
Extracts a number of characters from a string (starting from left)
öğrenmeye başla
LEFT(text, n)
Returns the length of a string (in bytes)
öğrenmeye başla
LENGTH(text)
Returns the position of the first occurrence of a substring in a string
öğrenmeye başla
LOCATE(s, text, start)
=POSITION(...)
Left-pads a string with another string, to a certain length
öğrenmeye başla
LPAD(text, width, s)
Corresponds Python 3 rjust()
Removes leading spaces from a string
öğrenmeye başla
LTRIM(text)
Repeats a string as many times as specified
öğrenmeye başla
REPEAT(text, n)
Replaces all occurrences of a substring within a string, with a new substring
öğrenmeye başla
REPLACE(text, s1, s2)
Similar to Python's 3.
Reverses a string and returns the result
öğrenmeye başla
REVERSE(text)
Extracts a number of characters from a string (starting from right)
öğrenmeye başla
RIGHT(text, n)
Right-pads a string with another string, to a certain length
öğrenmeye başla
RPAD(text, width, s)
Removes trailing spaces from a string
öğrenmeye başla
RTRIM(text)
Returns a string of the specified number of spaces.
öğrenmeye başla
SPACE(number)
Compares two strings
öğrenmeye başla
STRCMP(s1, s2)
returns -1 or 0 or 1
Extracts a substring from a string (starting at any position)
öğrenmeye başla
SUBSTRING(text, start, len)
=SUBSTR(...)=MID(...)
Returns a substring of a string before a specified number of DELIMITER occurs
öğrenmeye başla
SUBSTRING_INDEX(text, delimiter, quantity)
Removes leading and trailing spaces from a string
öğrenmeye başla
TRIM(text)
Converts a string to upper-case
öğrenmeye başla
UCASE(text)
=UPPER(text)
Adds a time/date interval to a date and then returns the date
öğrenmeye başla
ADDDATE(date/datetime, interval)
adddate(current_date(), INTERVAL 3 minute)
Adds a time interval to a time/datetime and then returns the time/datetime
öğrenmeye başla
ADDTIME(time/datetime, interval)
Returns the current date
öğrenmeye başla
CURRENT_DATE()
=CURDATE()
Returns the current time
öğrenmeye başla
CURRENT_TIME()
=CURTIME()
Extracts the date part from a datetime expression
öğrenmeye başla
DATE(datetime)
Returns the number of days between two date values
öğrenmeye başla
DATEDIFF(date1, date2)
Adds a time/date interval to a date and then returns the date
öğrenmeye başla
DATE_ADD(date, interval)
Formats a date
öğrenmeye başla
DATE_FORMAT(date, format_specifier)
Subtracts a time/date interval from a date and then returns the date
öğrenmeye başla
DATE_SUB(date, interval)
Returns the day of the month for a given date
öğrenmeye başla
DAY(date[time])
Returns the weekday NAME for a given date
öğrenmeye başla
DAYNAME(date[time])
Returns the day of the month for a given date
öğrenmeye başla
DAYOFMONTH(date[time])
Returns the weekday number for a given date
öğrenmeye başla
DAYOFWEEK(date[time])
Returns the day of the year for a given date
öğrenmeye başla
DAYOFYEAR(date[time])
Extracts a part from a given date
öğrenmeye başla
EXTRACT(time_unit FROM date/time)
Returns a date from a numeric datevalue
öğrenmeye başla
FROM_DAYS(day_quantity)
Returns the hour part for a given date
öğrenmeye başla
HOUR([date]time)
Extracts the last day of the month for a given date
öğrenmeye başla
LAST_DAY([date]time)
Returns the current date and time
öğrenmeye başla
NOW()
LOCALTIMESTAMP(), localtime(), sysdate(), CURRENT_TIMESTAMP()
Creates and returns a date based on a year and a number of days value
öğrenmeye başla
MAKEDATE(year, minute, second)
Creates and returns a time based on an hour, minute, and second value
öğrenmeye başla
MAKETIME(hour, minute, second)
Returns the microsecond part of a time/datetime
öğrenmeye başla
MICROSECOND([date]time)
Returns the minute part of a time/datetime
öğrenmeye başla
MINUTE([date]time)
Returns the month part for a given date
öğrenmeye başla
MONTH(date[time])
Returns the name of the month for a given date
öğrenmeye başla
MONTHNAME(date[time])
Adds a specified number of months to a period
öğrenmeye başla
PERIOD_ADD(period, number)
SELECT PERIOD_ADD(201703, 15);
Returns the difference between two periods
öğrenmeye başla
PERIOD_DIFF(period, number)
SELECT PERIOD_DIFF(1703, 1612);
Returns the quarter of the year for a given date value
öğrenmeye başla
QUARTER([date]time)
Returns the seconds part of a time/datetime
öğrenmeye başla
SECOND([date]time)
Returns a time value based on the specified seconds
öğrenmeye başla
SEC_TO_TIME(seconds)
Returns a date based on a string and a format
öğrenmeye başla
STR_TO_DATE(text, format_specifier)
Subtracts a time/date interval from a date and then returns the date
öğrenmeye başla
SUBDATE(date, interval)
Subtracts a time interval from a datetime and then returns the time/datetime
öğrenmeye başla
SUBTIME(time, interval)
Extracts the time part from a given time/datetime
öğrenmeye başla
TIME(datetime)
Formats a time by a specified format
öğrenmeye başla
TIME_FORMAT(time, format_specifier)
Converts a time value into seconds
öğrenmeye başla
TIME_TO_SEC(time)
Returns the difference between two time/datetime expressions
öğrenmeye başla
TIMEDIFF(t1, t2)
Returns a datetime value based on a date or datetime value
öğrenmeye başla
TIMESTAMP(date[time], [time])
Returns the number of days between a date and date "0000-00-00"
öğrenmeye başla
TO_DAYS(date)
Returns the week number for a given date
öğrenmeye başla
WEEK(date[time])
Returns the weekday number for a given date
öğrenmeye başla
WEEKDAY(date[time)
Returns the week number for a given date
öğrenmeye başla
WEEKOFYEAR(date[time)
Returns the year part for a given date
öğrenmeye başla
YEAR(date[time)
Returns the year and week number for a given date
öğrenmeye başla
YEARWEEK(date[time)
Returns the absolute value of a number
öğrenmeye başla
ABS(x)
Returns the arc cosine of a number
öğrenmeye başla
ACOS(x)
Returns the arc sine of a number
öğrenmeye başla
ASIN(x)
Returns the arc tangent of one or two numbers
öğrenmeye başla
ATAN(x)
Returns the arc tangent of two numbers
öğrenmeye başla
ATAN2(x, y)
Returns the average value of an expression
öğrenmeye başla
AVG(column)
Returns the smallest integer value that is >= to a number
öğrenmeye başla
CEILING(x)
=CEIL(x)
Returns the cosine of a number
öğrenmeye başla
COS(x)
Returns the cotangent of a number
öğrenmeye başla
COT(x)
Returns the number of records returned by a select query
öğrenmeye başla
COUNT(column)
Converts a value in radians to degrees
öğrenmeye başla
DEGREES(x)
Used for integer division
öğrenmeye başla
DIV
5 div 2 = 2
Returns e raised to the power of a specified number
öğrenmeye başla
EXP(x)
Returns the largest integer value that is <= to a number
öğrenmeye başla
FLOOR(x)
Returns the greatest value of the list of arguments
öğrenmeye başla
GREATEST(arg1, arg2, ...)
Returns the smallest value of the list of arguments
öğrenmeye başla
LEAST(arg1, arg2, ...)
Returns the natural logarithm of a number
öğrenmeye başla
LN(x)
Returns the natural logarithm of a number, or the logarithm of a number to a specified base
öğrenmeye başla
LOG(base, x)
wheras: LOG(x)=LN(x)
Returns the logarithm of a number to base 10
öğrenmeye başla
LOG10(x)
Returns the logarithm of a number to base 2
öğrenmeye başla
LOG2(x)
Returns the maximum value in a set of values
öğrenmeye başla
MAX(column)
Returns the minimum value in a set of values
öğrenmeye başla
MIN(column)
Returns the remainder of a number divided by another number
öğrenmeye başla
x MOD y
=MOD(x,y)=x%y
Returns the value of PI
öğrenmeye başla
PI()
Returns the value of a number raised to the power of another number
öğrenmeye başla
POWER(x, y)
POW(x,y)
Converts a degree value into radians
öğrenmeye başla
RADIANS(x)
Returns a random number x, where x∈⟨0;1)
öğrenmeye başla
RAND()
the same as Python 3 random. random()
Rounds a number to a specified number of decimal places
öğrenmeye başla
ROUND(x,y)
Returns the sign of a number
öğrenmeye başla
SIGN(x)
Returns the sine of a number
öğrenmeye başla
SIN(x)
Returns the square root of a number
öğrenmeye başla
SQRT(x)
Calculates the sum of a set of values
öğrenmeye başla
SUM(column)
Returns the tangent of a number
öğrenmeye başla
TAN(x)
Truncates a number to the specified number of decimal places
öğrenmeye başla
TRUNCATE(x)
Returns a binary representation of a number
öğrenmeye başla
BIN(x)
Attention it AIN'T the same as BINARY()
Converts a value to a binary string
öğrenmeye başla
BINARY value
Converts a value (of any type) into a specified datatype
öğrenmeye başla
CAST(value AS datetype)
Returns the first non-null value in a list
öğrenmeye başla
COALESCE(*args)
Returns the unique connection ID for the current connection
öğrenmeye başla
CONNECTION_ID()
Converts a number from one numeric base system to another
öğrenmeye başla
CONV(n, base, new_base)
Converts a value into the specified datatype or character set
öğrenmeye başla
CONVERT(value, datatype)
Returns the name of the current database
öğrenmeye başla
DATABASE()
Returns a value if a condition is TRUE, or another value if a condition is FALSE
öğrenmeye başla
IF(condition, value1, value2)
Return a specified value if the expression is NULL, otherwise return the expression
öğrenmeye başla
IFNULL(value)
Returns 1 or 0 depending on whether an expression is NULL
öğrenmeye başla
ISNULL(value)
Returns the AUTO_INCREMENT id of the last row that has been inserted or updated in a table
öğrenmeye başla
LAST_INSERT_ID()
Compares two expressions and returns NULL if they are equal. Otherwise, the first expression is returned
öğrenmeye başla
NULLIF(value, value2)
Returns the current MySQL user name and host name
öğrenmeye başla
USER()
=CURRENT_USER()=SYSTEM_USER=SESSION_USER
Returns the current version of the MySQL database
öğrenmeye başla
VERSION()
This will be used to select a database in the MySQL workarea.
öğrenmeye başla
USE Databasename;
Lists out the databases that are accessible by the MySQL DBMS.
öğrenmeye başla
SHOW DATABASES;
Shows the tables in the database once a database has been selected with the use command.
öğrenmeye başla
SHOW TABLES;
Shows the attributes, types of attributes, key information, whether NULL is permitted, defaults, and other information for a table.
öğrenmeye başla
SHOW COLUMNS FROM tablename;
Presents the details of all indexes on the table, including the PRIMARY KEY.
öğrenmeye başla
SHOW INDEX FROM tablename
Reports details of the MySQL DBMS performance and statistics.
öğrenmeye başla
SHOW TABLE STATUS LIKE tablename;
A FIXED length string (can contain letters, numbers, and special characters). The size parameter specifies the column length in characters - can be from 0 to 255. Default is 1
öğrenmeye başla
CHAR(size)
A VARIABLE length string (can contain letters, numbers, and special characters). The size parameter specifies the maximum column length in characters - can be from 0 to 65535
öğrenmeye başla
VARCHAR(size)
Equal to CHAR(), but stores binary byte strings. The size parameter specifies the column length in bytes. Default is 1
öğrenmeye başla
BINARY(size)
Equal to VARCHAR(), but stores binary byte strings. The size parameter specifies the maximum column length in bytes.
öğrenmeye başla
VARBINARY(size)
For BLOBs (Binary Large OBjects). Max length: 255 bytes
öğrenmeye başla
TINYBLOB
Holds a string with a maximum length of 255 characters
öğrenmeye başla
TINYTEXT
Holds a string with a maximum length of 65,535 bytes
öğrenmeye başla
TEXT(size)
For BLOBs (Binary Large OBjects). Holds up to 65,535 bytes of data
öğrenmeye başla
BLOB(size)
Holds a string with a maximum length of 16,777,215 characters
öğrenmeye başla
MEDIUMTEXT
For BLOBs (Binary Large OBjects). Holds up to 16,777,215 bytes of data
öğrenmeye başla
MEDIUMBLOB
Holds a string with a maximum length of 4,294,967,295 characters
öğrenmeye başla
LONGTEXT
For BLOBs (Binary Large OBjects). Holds up to 4,294,967,295 bytes of data
öğrenmeye başla
LONGBLOB
A string object that can have only one value, chosen from a list of possible values.
You can list up to 65535 values in an ENUM list. If a value is inserted that is not in the list, a blank value will be inserted. The values are sorted in the order you enter them
öğrenmeye başla
ENUM(val1, val2, val3, ...)
A string object that can have 0 or more values, chosen from a list of possible values. You can list up to 64 values in a SET list
öğrenmeye başla
SET(val1, val2, val3, ...)
A bit-value type. The number of bits per value is specified in size. The size parameter can hold a value from 1 to 64. The default value for size is 1.
öğrenmeye başla
BIT(size)
A very small integer. Signed range is from -128 to 127. Unsigned range is from 0 to 255. The size parameter specifies the maximum display width (which is 255)
öğrenmeye başla
TINYINT(size)
Zero is considered as false, nonzero values are considered as true.
öğrenmeye başla
BOOL
Equal to BOOL
öğrenmeye başla
BOOLEAN
A small integer. Signed range is from -32768 to 32767. Unsigned range is from 0 to 65535. The size parameter specifies the maximum display width (which is 255)
öğrenmeye başla
SMALLINT(size)
A medium integer. Signed range is from -8388608 to 8388607. Unsigned range is from 0 to 16777215. The size parameter specifies the maximum display width (which is 255)
öğrenmeye başla
MEDIUMINT(size)
A medium integer. Signed range is from -2147483648 to 2147483647. Unsigned range is from 0 to 4294967295. The size parameter specifies the maximum display width (which is 255)
öğrenmeye başla
INT(size)
Equal to INT(size)
öğrenmeye başla
INTEGER(size)
A large integer. Signed range is from -9223372036854775808 to 9223372036854775807. Unsigned range is from 0 to 18446744073709551615. The size parameter specifies the maximum display width (which is 255)
öğrenmeye başla
BIGINT(size)
A floating point number. The total number of digits is specified in size. The number of digits after the decimal point is specified in the d parameter. This syntax is deprecated in MySQL 8.0.17, and it will be removed in future MySQL versions
öğrenmeye başla
FLOAT(size, d)
A floating point number. MySQL uses the p value to determine whether to use FLOAT or DOUBLE for the resulting data type. If p is from 0 to 24, the data type becomes FLOAT(). If p is from 25 to 53, the data type becomes DOUBLE()
öğrenmeye başla
FLOAT(p)
A normal-size floating point number. The total number of digits is specified in size. The number of digits after the decimal point is specified in the d parameter
öğrenmeye başla
DOUBLE(size, d)
An exact fixed-point number. The total number of digits is specified in size.
The number of digits after the decimal point is specified in the d parameter. The maximum number for size is 65. The maximum number for d is 30. The default value for size is 10. The default value for d is 0.
öğrenmeye başla
DECIMAL(size, d)
Equal to DECIMAL(size,d)
öğrenmeye başla
DEC(size, d)
To disable negative numbers.
öğrenmeye başla
UNSIGNED
To add leading zeros, which make all numbers in the column sustain the same length.
öğrenmeye başla
ZEROFILL
A date. Format: YYYY-MM-DD. The supported range is from '1000-01-01' to '9999-12-31'
öğrenmeye başla
DATE
A date and time combination. Format: YYYY-MM-DD hh: mm: ss.
The supported range is from '1000-01-01 00:00:00' to '9999-12-31 23:59:59'. Adding DEFAULT and ON UPDATE in the column definition to get automatic initialization and updating to the current date and time
öğrenmeye başla
DATETIME(fsp)
A timestamp. TIMESTAMP values are stored as the number of seconds since the Unix epoch ('1970-01-01 00:00:00' UTC). Format: YYYY-MM-DD hh: mm: ss.
The supported range is from '1970-01-01 00:00:01' UTC to '2038-01-09 03:14:07' UTC.
öğrenmeye başla
TIMESTAMP(fsp)
A time. Format: hh: mm: ss. The supported range is from '-838:59:59' to '838:59:59'
öğrenmeye başla
TIME(fsp)
A year in four-digit format. Values allowed in four-digit format: 1901 to 2155, and 0000.
öğrenmeye başla
YEAR

Yorum yapmak için giriş yapmalısınız.