找到 4379 篇文章 关于 MySQL

MySQL 如何根据特定列名对随机行进行排序?

AmitDiwan
更新于 2019-11-05 07:17:29

234 次浏览

让我们首先创建一个表 -mysql> create table DemoTable1339    -> (    -> Name varchar(30),    -> Score int    -> ); Query OK, 0 rows affected (0.76 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1339 values('Chris', 56); Query OK, 1 row affected (0.36 sec) mysql> insert into DemoTable1339 values('Bob', 46); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable1339 values('Adam', 78); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable1339 values('John', 90); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable1339 values('Carol', 98); Query OK, 1 ... 阅读更多

如何根据条件统计值并在 MySQL 中以不同的列显示结果?

AmitDiwan
更新于 2019-11-05 07:15:06

97 次浏览

让我们首先创建一个表 -mysql> create table DemoTable1485     -> (     -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,     -> StudentName varchar(20),     -> StudentSubject varchar(20)     -> ); Query OK, 0 rows affected (0.72 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1485(StudentName, StudentSubject) values('Chris', 'MySQL'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable1485(StudentName, StudentSubject) values('Robert', 'MongoDB'); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable1485(StudentName, StudentSubject) values('Robert', 'MongoDB'); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable1485(StudentName, StudentSubject) ... 阅读更多

使用 MySQL where 子句和按 avg() 排序查找重复个别元素的平均值

AmitDiwan
更新于 2019-11-05 07:12:03

204 次浏览

为此,请使用 having 子句而不是 where。让我们首先创建一个表 -mysql> create table DemoTable1338    -> (    -> Name varchar(10),    -> Score int    -> ); Query OK, 0 rows affected (1.54 sec)使用 insert 命令在表中插入一些记录。这里,我们插入了具有分数的重复名称 -mysql> insert into DemoTable1338 values('Chris', 8); Query OK, 1 row affected (0.80 sec) mysql> insert into DemoTable1338 values('Bob', 4); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable1338 values('Bob', 9); Query OK, 1 row affected (0.27 sec) mysql> insert into DemoTable1338 values('Chris', 6); ... 阅读更多

在 SQL 中获取列中的最大值,这些值是字符串数字,例如 Value440、Value345 等。

AmitDiwan
更新于 2019-11-05 07:08:47

52 次浏览

为此,您可以使用 MAX() 以及 substring()。让我们首先创建一个表 -mysql> create table DemoTable1337    -> (    -> Value varchar(50)    -> ); Query OK, 0 rows affected (0.58 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1337 values('Value400'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable1337 values('Value345'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable1337 values('Value567'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable1337 values('Value489'); Query OK, 1 row affected (0.22 sec)使用 select 语句显示表中的所有记录 ... 阅读更多

在 MySQL 中显示特定用户的全部权限

AmitDiwan
更新于 2019-11-05 07:05:58

129 次浏览

让我们首先显示所有用户名及其主机名 -mysql> select user, host from MySQL.user;这将产生以下输出 -+------------------+-----------+ | user             | host      | +------------------+-----------+ | Bob              | %         | | Charlie          | %         | | Robert           | %         | | User2            | %         | | mysql.infoschema | %         ... 阅读更多

即使字段设置为 null,如何在 MySQL 中选择不同的字段?

AmitDiwan
更新于 2019-11-05 07:01:32

135 次浏览

为此,您可以使用 COALESCE()。让我们首先创建一个表 -mysql> create table DemoTable1336    -> (    -> FirstName varchar(20)    -> ,    -> SecondName varchar(20)    -> ); Query OK, 0 rows affected (0.64 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1336 values('John', NULL); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable1336 values(NULL, 'Chris'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable1336 values('David', 'Mike'); Query OK, 1 row affected (0.18 sec)使用 select 语句显示表中的所有记录 -mysql> select * from DemoTable1336;这 ... 阅读更多

在 MySQL 中选择时间戳在 X 时间之后的所有条目

AmitDiwan
更新于 2019-11-05 06:59:01

370 次浏览

让我们首先创建一个表 -mysql> create table DemoTable1335    -> (    -> ArrivalTime datetime    -> ); Query OK, 0 rows affected (0.49 sec)使用 insert 命令在表中插入一些记录。我们在这里插入了日期时间记录 -mysql> insert into DemoTable1335 values('2019-09-19 22:54:00'); Query OK, 1 row affected (0.46 sec) mysql> insert into DemoTable1335 values('2019-09-19 22:59:00'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable1335 values('2019-09-19 22:56:00'); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable1335 values('2019-09-19 22:52:00'); Query OK, 1 row affected (0.11 sec)使用 ... 阅读更多

在 MySQL 中使用单个存储过程调用在两个表中插入值

AmitDiwan
更新于 2019-11-05 06:56:13

1K+ 次浏览

以下是使用存储过程在两个表中插入值的语法 -DELIMITER // CREATE PROCEDURE yourProcedureName(anyVariableName int)    BEGIN    insert into yourTableName1(yourColumnName1) values(yourVariableName);    insert into yourTableName2(yourColumnName2) values(yourVariableName);    END //让我们首先创建一个表 -mysql> create table DemoTable1    -> (    -> StudentScore int    -> ); Query OK, 0 rows affected (0.58 sec)第二个表如下 -mysql> create table DemoTable2    -> (    -> PlayerScore int    -> ); Query OK, 0 rows affected (0.52 sec)以下是创建存储过程并在两个表中插入值的查询 ... 阅读更多

ZF 的 MySQL 行声明?

AmitDiwan
更新于 2019-11-05 06:53:33

192 次浏览

ZF 代表 ZEROFILL,即零填充的行声明 让我们首先创建一个表。这里,我们将 int 字段大小设置为 10 -mysql> create table DemoTable1332    -> (    -> Number int(10) ZEROFILL NOT NULL DEFAULT 0    -> ); Query OK, 0 rows affected (0.59 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1332 values(); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable1332 values(1); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable1332 values(10); Query OK, 1 row affected (0.10 sec) mysql> insert ... 阅读更多

如何在 MySQL 中使用 @ 符号?

AmitDiwan
更新于 2019-11-05 06:51:43

366 次浏览

要使用 @ 符号,请使用 MySQL SET 命令。@ 符号用于设置用户定义的变量。以下是语法 -SET @anyVariableName:=yourValue;让我们首先创建一个表 -mysql> create table DemoTable1331    -> (    -> Id int,    -> Name varchar(20)    -> ); Query OK, 0 rows affected (0.51 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1331 values(10, 'Chris'); Query OK, 1 row affected (0.71 sec) mysql> insert into DemoTable1331 values(101, 'David'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable1331 values(40, 'Bob'); Query OK, 1 row affected (0.12 sec) ... 阅读更多

广告