Windows. Linux. Wordpress. Joomla. GIMP. Inkscape. Repairs.

Web development quizzes

Clock
Minutes
Seconds
A VARCHAR can store up to 512 characters.

This query is correct: SELECT * FROM employee ON age = 25;

This query is correct: SELECT * FROM employee WHERE age BETWEEN 20 AND 25;

This query retrieves the first 3 rows: SELECT * FROM employee LIMIT 3;

This query retrieves the employees whose names end with h: SELECT * FROM employees WHERE name LIKE 'h%';