-
What column names are displayed when this command is executed?
SHOW COLUMNS FROM Table_Name LIKE '%name';
-
- prefixed with ‘name’
- prefixed with ‘%name’
- suffixed with ‘name’
- suffixed with ‘%name’
- None of these
Correct Option: C
The wildcard ‘%’ is used to indicate that any number of characters can replace it. All column names that end in ‘name’ are displayed. Additional information of columns like type and size are listed.