找到 4219 篇文章 关于 MySQLi

如何在 MySQL 中根据科目将学生成绩显示在单个列中?

AmitDiwan
更新于 2019年8月22日 07:40:10

2K+ 阅读量

为此,使用 UNION ALL。让我们先创建一个表:mysql> create table DemoTable729 (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentName varchar(100),    MySQLMarks int,    CMarks int,    JavaMarks int ); Query OK, 0 rows affected (0.40 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable729(StudentName, MySQLMarks, CMarks, JavaMarks) values('Chris', 94, 67, 75); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable729(StudentName, MySQLMarks, CMarks, JavaMarks) values('Robert', 45, 99, 54); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable729(StudentName, MySQLMarks, CMarks, JavaMarks) values('David', 57, 89, 43); Query OK, 1 row ... 阅读更多

如何将英国日期转换为 MySQL 日期?

AmitDiwan
更新于 2019年8月22日 07:36:41

305 阅读量

英国日期格式支持日-月-年的格式。要将其转换为 MySQL 日期,请使用 STR_TO_DATE()。以下是语法:select str_to_date(yourColumnName, '%d/%m/%Y') from yourTableName;让我们先创建一个表:mysql> create table DemoTable728 (DueDate varchar(100)); Query OK, 0 rows affected (0.59 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable728 values('10/11/2019'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable728 values('31/01/2016'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable728 values('01/12/2015'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable728 values('11/03/2018'); Query OK, 1 row affected (0.16 sec)显示表中的所有记录 ... 阅读更多

使用单个查询从 MySQL 表中以自定义顺序选择另一个列中的值

AmitDiwan
更新于 2019年8月22日 07:35:16

118 阅读量

为此,您可以使用 IN()。让我们先创建一个表:mysql> create table DemoTable727 (    Name varchar(100),    Score int ); Query OK, 0 rows affected (0.88 sec)使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable727 values('Chris', 45); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable727 values('Robert', 89); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable727 values('Carol', 94); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable727 values('David', 93); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable727 values('Mike', 78); Query OK, 1 row affected (0.21 ... 阅读更多

如何在 MySQL 中按 DESC 或 ASC 对 varchar 数字列进行排序?

AmitDiwan
更新于 2019年8月22日 07:33:35

461 阅读量

让我们先创建一个表 -mysql> create table DemoTable726 (Value varchar(100)); Query OK, 0 rows affected (0.60 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable726 values('100'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable726 values('10'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable726 values('110'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable726 values('2000'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable726 values('1000'); Query OK, 1 row affected (0.14 sec)使用 select 语句显示表中的所有记录 -mysql> select *from DemoTable726;这将 ... 阅读更多

如何在 MySQL 中计算数字的幂?

AmitDiwan
更新于 2019年8月22日 07:39:06

95 阅读量

要计算数字的幂,请使用 POWER() 函数。让我们先创建一个表 -mysql> create table DemoTable    (       Amount int    ); Query OK, 0 rows affected (0.89 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values(64); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values(144); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values(400); Query OK, 1 row affected (0.13 sec)使用 select 语句显示表中的所有记录 -mysql> select *from DemoTable;这将产生以下输出 -+--------+ | Amount | ... 阅读更多

我们可以在 MySQL 表名中使用下划线吗?

AmitDiwan
更新于 2019年8月22日 07:31:45

1K+ 阅读量

您不能在表名中使用下划线。如果您仍然想使用下划线创建一个新表,请使用反引号将其括起来,而不是单引号。但是,让我们首先尝试在带下划线的表名周围设置引号。以下是一个示例 -mysql> create table 'Demo_Table725'(    ClientId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    ClientName varchar(100),    ClientAge int,    ClientCountryName varchar(100),    isMarried boolean );这将产生以下输出,即错误,因为我们没有使用反引号 -ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server ... 阅读更多

MySQL 查询以选择底部 n 条记录

AmitDiwan
更新于 2019年8月22日 07:29:07

920 阅读量

让我们先创建一个表 -mysql> create table DemoTable724 (Value int); Query OK, 0 rows affected (0.79 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable724 values(101); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable724 values(183); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable724 values(983); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable724 values(234); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable724 values(755); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable724 values(435); Query OK, 1 row affected (0.28 sec) mysql> ... 阅读更多

仅当 MySQL 数据库中的某个值在包含重复和非重复值的列中仅存在一次时才选择该值

AmitDiwan
更新于 2019年8月22日 07:27:37

390 阅读量

让我们先创建一个表 -mysql> create table DemoTable723 (Value int); Query OK, 0 rows affected (0.58 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable723 values(100); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable723 values(200); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable723 values(200); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable723 values(100); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable723 values(300); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable723 values(400); Query OK, 1 row affected (0.16 sec) mysql> ... 阅读更多

使用 MySQL STR_TO_DATE 替换日期格式

AmitDiwan
更新于 2019年8月22日 07:33:37

356 阅读量

让我们先创建一个表 -mysql> create table DemoTable(DueDate varchar(100)); Query OK, 0 rows affected (0.78 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values('10-01-2019 10:19:20'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values('12-03-2018 11:00:00'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('02-23-2018 04:20:40'); Query OK, 1 row affected (0.19 sec)使用 select 语句显示表中的所有记录 -mysql> select *from DemoTable;这将产生以下输出 -+---------------------+ | DueDate             | +---------------------+ | 10-01-2019 10:19:20 | | 12-03-2018 11:00:00 ... 阅读更多

有没有办法使用 MySQL 命令行实用程序列出 MySQL 中的所有保留字?

AmitDiwan
更新于 2019年8月22日 07:26:07

167 阅读量

是的,我们可以使用命令行实用程序列出 MySQL 中的所有保留字。以下是语法 -select *from mysql.help_keyword;让我们实现上述语法以获取 MySQL 中所有保留字的列表。以下是查询 -mysql> select *from mysql.help_keyword;这将产生以下输出 -

广告