Complete the code to extract the first 3 characters from the column 'name'.
SELECT [1](name, 3) AS first_three FROM users;
The LEFT function extracts a specified number of characters from the start (left) of a string.
Complete the code to extract 4 characters starting from the 2nd character in 'description'.
SELECT [1](description, 2, 4) AS part_desc FROM products;
The SUBSTRING function extracts characters starting at a specific position for a given length.
Fix the error in the code to get the last 5 characters of 'filename'.
SELECT [1](filename, 5) AS last_five FROM files;
The RIGHT function extracts characters from the end (right) of a string.
Fill both blanks to extract 3 characters starting from the 4th character of 'address'.
SELECT [1](address, [2], 3) AS part_address FROM locations;
Use SUBSTRING with start position 4 to get 3 characters starting from the 4th character.
Fill both blanks to extract the first 2 characters of 'code' in uppercase.
SELECT UPPER([1](code, [2])) AS code_start FROM codes;
Use LEFT to get first 2 characters, then UPPER to convert to uppercase.