Slide 17
Slide 17 text
EffectiveMySQL.com
#mysql @RonaldBradford
Effective MySQL Architecture and Design Practices
string example
String Example
17
CREATE TABLE tour_locations (place VARCHAR(10));
INSERT INTO tour_locations VALUES
('Helsinki, Finland'),
('Stockholm, Sweden'),
('Riga, Latvia'),
('Tallinn, Estonia');
SELECT place FROM tour_locations;
+------------+
| place |
+------------+
| Helsinki, |
| Stockholm, |
| Riga, Latv |
| Tallinn, E |
+------------+