找到 4219 篇文章 适用于 MySQLi

从 MySQL 数据库中删除具有特定域的 URL?

AmitDiwan
更新于 2019 年 11 月 8 日 10:39:25

251 次查看

要删除具有特定域的 URL,请使用 DELETE 和 LIKE 子句。让我们首先创建一个表 -mysql> create table DemoTable1361     -> (     -> URL text     -> ) ; Query OK, 0 rows affected (0.58 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1361 values('Https://www.google.com//?id=1'); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable1361 values('Https://127.0.0.1//?id=2&name=John'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable1361 values('Https://www.yahoo.com//?id=3'); Query OK, 1 row affected (0.31 sec) mysql> insert into DemoTable1361 values('Https://www.google.com//?id=1'); Query OK, 1 row affected (0.16 sec)显示所有记录从 ... 阅读更多

在 MySQL WHERE 子句中获取当前年份?

AmitDiwan
更新于 2019 年 11 月 8 日 10:37:28

659 次查看

要获取当前年份,请将 YEAR() 与 CURDATE() 一起使用。让我们首先创建一个表 -mysql> create table DemoTable1360     -> (     -> JoiningYear int     -> )     -> ; Query OK, 0 rows affected (0.51 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1360 values(1998); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable1360 values(2018); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable1360 values(2016); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable1360 values(2019); Query OK, 1 row affected (0.13 sec) mysql> ... 阅读更多

在 CONTACT() 中使用反引号在 MySQL 中会引发错误

AmitDiwan
更新于 2019 年 11 月 8 日 10:35:10

96 次查看

不要使用反引号,您可以在 CONCAT() 中使用单引号。以下是语法 -select concat(yourColumnName1, ' ', yourColumnName2) from yourTableName;让我们首先创建一个表 -mysql> create table DemoTable1359     -> (     -> Id int,     -> Name varchar(20)     -> ); Query OK, 0 rows affected (0.58 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1359 values(101, 'Chris'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable1359 values(102, 'Adam'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable1359 values(103, 'Mike'); Query OK, 1 row ... 阅读更多

在 MySQL 中对来自类似日期记录的值求和

AmitDiwan
更新于 2019 年 11 月 5 日 10:19:27

757 次查看

为此,使用 GROUP BY 和 DATE()。让我们首先创建一个表 -mysql> create table DemoTable1358     -> (     -> PurchaseDate datetime,     -> ProductPrice int     -> ); Query OK, 0 rows affected (1.59 sec)使用 insert 命令在表中插入一些记录。在这里,我们插入了日期记录,其中一些记录具有类似的日期 -mysql> insert into DemoTable1358 values('2019-09-20 12:34:00', 450); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable1358 values('2019-09-21 11:00:00', 1050); Query OK, 1 row affected (0.27 sec) mysql> insert into DemoTable1358 values('2018-09-21 02:10:00', 2050); Query OK, 1 ... 阅读更多

在 MySQL 中首先显示非空值的结果,然后显示空值的结果

AmitDiwan
更新于 2019 年 11 月 5 日 10:18:06

295 次查看

让我们首先创建一个表 -mysql> create table DemoTable1357     -> (     -> StudentName varchar(40),     -> StudentCountryName varchar(30)     -> ); Query OK, 0 rows affected (0.49 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1357 values('Chris', 'US'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable1357 values('David', NULL); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable1357 values('David', 'AUS'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable1357 values('Carol', NULL); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable1357 values('Mike', ... 阅读更多

在 MySQL 中将表列从 VARCHAR 更改为 NULL

AmitDiwan
更新于 2019 年 11 月 5 日 10:15:48

428 次查看

要更改,请使用 ALTER 命令和 CHANGE,如下面的语法所示 -alter table yourTableName change yourColumnName yourColumnName datatype NULL DEFAULT NULL;让我们首先创建一个表 -mysql> create table DemoTable1356     -> (     -> FirstName varchar(30)     -> ); Query OK, 0 rows affected (0.56 sec)让我们实现上述语法将表列更改为 NULL -mysql> alter table DemoTable1356 change FirstName FirstName varchar(30) NULL DEFAULT NULL; Query OK, 0 rows affected (0.17 sec) Records: 0  Duplicates: 0  Warnings: 0使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1356 ... 阅读更多

MySQL 查询以在一行中返回所有项目

AmitDiwan
更新于 2019 年 11 月 5 日 10:14:31

945 次查看

为此,使用 GROUP_CONCAT()。让我们首先创建一个表 -mysql> create table DemoTable1355     -> (     -> Location text     -> ); Query OK, 0 rows affected (0.57 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1355 values('E:'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable1355 values('AllPrograms'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable1355 values('ChatApplicationInJava'); Query OK, 1 row affected (0.38 sec) mysql> insert into DemoTable1355 values('MainFolder'); Query OK, 1 row affected (0.23 sec)使用 select 语句显示表中的所有记录 -mysql> select * ... 阅读更多

修复错误 1136:第 1 行的列数与值数不匹配?

AmitDiwan
更新于 2019 年 11 月 5 日 10:13:16

2K+ 次查看

如果您缺少 auto_increment 列的值,则可能会获得此值。错误如下 -mysql> insert into DemoTable1353 values('Chris', 23); ERROR 1136 (21S01):第 1 行的列数与值数不匹配您需要为 auto_increment 提供值或将其留给自动生成。让我们看一个例子并创建一个表 -mysql> create table DemoTable1353     -> (     -> Id int NOT NULL AUTO_INCREMENT,     -> Name varchar(20),     -> Age int,     -> PRIMARY KEY(Id)     -> ); Query OK, 0 rows affected (0.52 sec)插入 ... 阅读更多

在 MySQL 中转换其中一个值并与另一个值执行除法?

AmitDiwan
更新于 2019 年 11 月 5 日 09:35:06

134 次查看

为此,首先使用 CAST()。让我们首先创建一个表 -mysql> create table DemoTable1352     -> (     -> Value1 int,     -> Value2 int     -> ); Query OK, 0 rows affected (0.54 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1352 values(10, 30); Query OK, 1 row affected (0.42 sec) mysql> insert into DemoTable1352 values(40, 60); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable1352 values(110, 130); Query OK, 1 row affected (0.18 sec)使用 select 语句显示表中的所有记录 -mysql> select * from DemoTable1352; 这 ... 阅读更多

仅显示在 MySQL 中至少出现三次的重复列名

AmitDiwan
更新于 2019 年 11 月 5 日 09:33:43

68 次查看

为此,使用 HAVING COUNT()。让我们首先创建一个表 -mysql> create table DemoTable1351     -> (     -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,     -> StudentName varchar(40)     -> ); Query OK, 0 rows affected (1.08 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1351(StudentName) values('Chris'); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable1351(StudentName) values('Bob'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable1351(StudentName) values('Bob'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable1351(StudentName) values('David'); Query OK, 1 row affected (0.11 ... 阅读更多

广告