找到 4219 篇文章 适用于 MySQLi

两种从包含数字的 MySQL 列中获取最大值的方法

AmitDiwan
更新于 2019-09-25 10:50:23

139 次浏览

要获取最大值,请使用以下语法中的任何一种:select max(yourColumnName) from yourTableName; 或 select *from yourTableName order by yourColumnName desc limit 1;让我们先创建一个表:mysql> create table DemoTable (    Value int ); Query OK, 0 rows affected (0.84 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values(45); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values(87); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values(56); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values(77); Query OK, 1 row affected ... 阅读更多

使用 REGEXP 进行 MySQL 字母搜索 (ABC)?

AmitDiwan
更新于 2019-09-25 10:48:04

439 次浏览

对于字母搜索,请在 MySQL 中使用 REGEX。在这里,假设我们正在搜索以 A、B 或 C 开头的记录。使用 REGEXP 实现此目的的语法如下:select *from yourTableName where yourColumnName REGEXP '^[ABC]';让我们先创建一个表:mysql> create table DemoTable (    Name varchar(100) ); Query OK, 0 rows affected (0.69 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values('Chris'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values('David'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable values('Mike'); Query ... 阅读更多

在 MySQL 表中的所有记录上使用 TRIM?

AmitDiwan
更新于 2019-09-25 10:46:39

521 次浏览

TRIM 用于删除前导和尾随空格。让我们先创建一个表:mysql> create table DemoTable (    StudentName varchar(100) ); Query OK, 0 rows affected (0.64 sec)使用 insert 命令在表中插入一些记录。在这里,我们插入了带有前导和尾随空格的记录:mysql> insert into DemoTable values(' Adam Smith '); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable values(' David Miller '); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values(' Chris Brown '); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable values(' Carol ... 阅读更多

MySQL 查询,从包含日期记录的表中获取最新日期

AmitDiwan
更新于 2019-09-25 10:43:19

4K+ 次浏览

让我们先创建一个表:mysql> create table DemoTable (    DueDate date ); Query OK, 0 rows affected (0.56 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values('2018-10-01'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('2016-12-31'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values('2019-07-02'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values('2015-01-12'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values('2019-04-26'); Query OK, 1 row affected (0.13 sec)使用 select 语句显示表中的所有记录:mysql> select ... 阅读更多

从 MySQL 中的 varchar 日期列表中获取最大日期

AmitDiwan
更新于 2019-09-25 10:40:54

205 次浏览

让我们先创建一个表:mysql> create table DemoTable (    AdmissionDate varchar(100) ); Query OK, 0 rows affected (0.76 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values('Sunday, 11 August 2019'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values('Friday, 18 October 2019'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values('Thursday, 18 July 2019'); Query OK, 1 row affected (0.23 sec)使用 select 语句显示表中的所有记录:mysql> select *from DemoTable ;这将产生以下输出:+-------------------------+ | AdmissionDate ... 阅读更多

使用 MySQL 通配符查询两个列的值并将其结果显示在新列中?

AmitDiwan
更新于 2019-09-25 10:39:17

261 次浏览

让我们先创建一个表:mysql> create table DemoTable (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    Value1 int,    Value2 int ); Query OK, 0 rows affected (0.55 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable(Value1, Value2) values(100, 150); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable(Value1, Value2) values(500, 1000); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable(Value1, Value2) values(15000, 18000); Query OK, 1 row affected (0.13 sec)使用 select 语句显示表中的所有记录:mysql> select *from DemoTable;这将产生以下输出 ... 阅读更多

如何在 MySQL 中将“+”(加号)替换为空格?

AmitDiwan
更新于 2019-09-25 10:36:35

428 次浏览

要替换,请使用 MySQL 中的 REPLACE() 函数。让我们先创建一个表:mysql> create table DemoTable (    Number varchar(100) ); Query OK, 0 rows affected (0.86 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values('+916578675547'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values('+918976676564'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values('+919800087678'); Query OK, 1 row affected (0.12 sec)使用 select 语句显示表中的所有记录:mysql> select *from DemoTable;这将产生以下输出:+---------------+ | Number ... 阅读更多

从 MySQL 数据库中选择随机条目?

AmitDiwan
更新于 2019-09-25 10:34:41

99 次浏览

让我们先创建一个表:mysql> create table DemoTable (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    ClientName varchar(100),    ClientAge int ); Query OK, 0 rows affected (0.92 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable(ClientName, ClientAge) values('Robert', 45); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable(ClientName, ClientAge) values('Mike', 55); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable(ClientName, ClientAge) values('Bob', 42); Query OK, 1 row affected (0.08 sec) mysql> insert into DemoTable(ClientName, ClientAge) values('Sam', 47); Query OK, 1 row affected (0.11 sec)显示所有记录 ... 阅读更多

如何从包含学生分数的表中获取第二高值?

AmitDiwan
更新于 2019-09-25 10:32:23

611 次浏览

要获取第二高值,请使用 ORDER BY DESC 和 LIMIT 1, 1。让我们先创建一个表:mysql> create table DemoTable (    StudentScore int ); Query OK, 0 rows affected (0.56 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values(89); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values(69); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values(97); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values(99); Query OK, 1 row affected (0.12 sec)使用 select 语句显示表中的所有记录 ... 阅读更多

如何使用 MySQL 查询检索 NULL 的对应值?

AmitDiwan
更新于 2019-09-25 10:29:35

69 次浏览

为此,请使用 IS NULL 属性。让我们先创建一个表:mysql> create table DemoTable (    EmployeeName varchar(100),    EmployeeAge int ); Query OK, 0 rows affected (0.59 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values('Chris', 32); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values('David', 45); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable values('Bob', NULL); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values('Sam', 28); Query OK, 1 row affected (0.14 sec)使用 select 语句显示表中的所有记录:mysql> ... 阅读更多

广告