SQL DATABASE Crossword Puzzle
Download and print this SQL DATABASE crossword puzzle.
Related puzzles:
Browse all Computers / IT Puzzles
QUESTIONS LIST:
- char : the size parameter specifies the column length in characters
- varchar: the size parameter specifies the maximum string length in characters, ranging from 0 to 65,535.
- binary: the size parameter specifies the column length in bytes, storing binary byte strings, with a default of 1.
- boolean: the value zero is considered false, while any nonzero value is considered true.
- bit: the size parameter specifies the number of bits per value, ranging from 1 to 64, with a default of 1.
- integer: the size parameter specifies the maximum display width (up to 255), with a signed range of -2,147,483,648 to 2,147,483,647 and an unsigned range of 0 to 4,294,967,295.
- float: the size parameter specifies the total number of digits, while the d parameter specifies the number of digits after the decimal point, but this syntax is deprecated in mysql 8.0.17.
- text: this data type is used for text or combinations of text and numbers, with a maximum length of 255 characters.
- sql: this is an international standard for database manipulation.