SHOW DATABASES LIKE 'tech%' correctly returns all databases whose names start with 'tech'. The % wildcard matches zero or more characters, so 'tech%' finds 'tech', 'technology', 'tech1', etc. Options A and C have the % in the wrong position (matches names containing 'tech'), and B has a syntax error with an unclosed quote.