要使用包含点的字符串并显示以特定数字开头的记录,您需要使用REGEXP。让我们首先创建一个表-
mysql> create table DemoTable -> ( -> GameReleaseVersion varchar(20) -> );
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable values('19.6'); mysql> insert into DemoTable values('18.4'); mysql> insert into DemoTable values('17.6'); mysql> insert into DemoTable values('19.5');
使用select语句显示表中的所有记录-
mysql> select *from DemoTable;
这将产生以下输出-
+--------------------+ | GameReleaseVersion | +--------------------+ | 19.6 | | 18.4 | | 17.6 | | 19.5 | +--------------------+ 4 rows in set (0.00 sec)
这是与包含点的字符串一起使用的查询。我们将获取以19开头的记录以及点后的其他条件-
mysql> select *from DemoTable -> where GameReleaseVersion regexp '^19\.[0-9]+$';
这将产生以下输出-
+--------------------+ | GameReleaseVersion | +--------------------+ | 19.6 | | 19.5 | +--------------------+ 2 rows in set (0.15 sec)