 
			 
			MCQOPTIONS
 Saved Bookmarks
				| 1. | How to select all data from student table starting the name from letter 'r'? | 
| A. | SELECT * FROM student WHERE name LIKE 'r%'; | 
| B. | SELECT * FROM student WHERE name LIKE '%r%'; | 
| C. | SELECT * FROM student WHERE name LIKE '%r'; | 
| D. | SELECT * FROM student WHERE name LIKE '_r%'; | 
| Answer» B. SELECT * FROM student WHERE name LIKE '%r%'; | |