Pattern match: string begin with a certain letter : Begin With « Regular Expression « SQL / MySQL






Pattern match: string begin with a certain letter

    
/*
mysql> select * from Bird;
+----------+-------+---------+------+------------+------------+
| name     | owner | species | sex  | birth      | death      |
+----------+-------+---------+------+------------+------------+
| BlueBird | Joe   | Car     | f    | 1999-03-30 | NULL       |
| RedBird  | Yin   | Bus     | m    | 1979-04-30 | 0000-00-00 |
| RedBird  | Yin   | Bus     | m    | 1998-01-30 | NULL       |
+----------+-------+---------+------+------------+------------+
3 rows in set (0.00 sec)

mysql> /* This query matches only lowercase 'b' at the beginning of a name: */
mysql> SELECT * FROM Bird WHERE name REGEXP BINARY '^b';
Empty set (0.05 sec)


*/  
  
Drop table Bird;

CREATE TABLE Bird (
    name VARCHAR(20), 
    owner VARCHAR(20),
    species VARCHAR(20), 
    sex CHAR(1), 
    birth DATE, 
    death DATE
);
  
INSERT INTO  Bird VALUES ('BlueBird','Joe','Car','f','1999-03-30',NULL);
INSERT INTO  Bird VALUES ('RedBird','Yin','Bus','m','1979-04-30',1998-01-30);
INSERT INTO  Bird VALUES ('RedBird','Yin','Bus','m','1998-01-30',NULL);
  
select * from Bird;


/* This query matches only lowercase 'b' at the beginning of a name: */

SELECT * FROM Bird WHERE name REGEXP BINARY '^b';


           
         
    
    
    
  








Related examples in the same category

1.The caret (^) anchors the start, and the dollar sign ($) the end;
2.Pattern Matching: beginning with 'b'
3.String begins with
4.Pattern match: string begin and end
5.Show records where the name begins with a "B"
6.Show records where the name begins with a "B" or "C"
7.Strings that begin with a particular substring:
8.Matches strings that begin with a vowel or end with er:
9.Matches where a is the first character