找到 4219 篇文章 关于 MySQLi

从 MySQL 表中删除数据,其中列等于值并且列 2 等于值 2?

AmitDiwan
更新于 2019-08-22 07:24:46

259 次浏览

让我们首先创建一个表 - mysql> create table DemoTable722 (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentName varchar(100),    StudentAge int ); Query OK, 0 rows affected (1.84 sec)使用 insert 命令在表中插入一些记录 - mysql> insert into DemoTable722(StudentName, StudentAge) values('Chris Brown', 23) ; Query OK, 1 row affected (0.24 sec) mysql> insert into DemoTable722(StudentName, StudentAge) values('John Smith', 21); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable722(StudentName, StudentAge) values('David Miller', 22); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable722(StudentName, StudentAge) values('Adam Smith', 20); Query OK, 1 row affected ... 阅读更多

MySQL 中是否存在带有 IF/ELSE 语句的 SELECT?

AmitDiwan
更新于 2019-08-22 07:23:05

119 次浏览

是的,MySQL 中可以使用带有 IF/ELSE 的 SELECT。让我们首先创建一个表 - mysql> create table DemoTable721 (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    FirstName varchar(100),    Marks int,    CountryName varchar(100) ); Query OK, 0 rows affected (0.57 sec)使用 insert 命令在表中插入一些记录 - mysql> insert into DemoTable721(FirstName, Marks, CountryName) values('Chris', 56, 'US'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable721(FirstName, Marks, CountryName) values('Robert', 78, 'UK'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable721(FirstName, Marks, CountryName) values('Mike', 45, 'AUS'); Query OK, 1 row affected (0.16 sec) ... 阅读更多

MySQL 中的正则表达式,仅显示由连字符分隔的数字。

AmitDiwan
更新于 2019-08-22 07:26:32

361 次浏览

让我们首先创建一个表 - mysql> create table DemoTable    (       Code varchar(100)    ); Query OK, 0 rows affected (1.16 sec)使用 insert 命令在表中插入一些记录 - mysql> insert into DemoTable values('100-677-9876'); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable values('100-677-9876-John'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values('David-100-677-9876'); Query OK, 1 row affected (0.16 sec)使用 select 语句显示表中的所有记录 - mysql> select *from DemoTable;这将产生以下输出 - +--------------------+ | Code             | +--------------------+ ... 阅读更多

我在数据库表中使用反引号将“from”和“to”作为列标题。现在,我如何选择它们?

AmitDiwan
更新于 2019-08-22 07:21:14

92 次浏览

首先,要使用保留字,应该用反引号括起来,例如 - `from` `to`由于您想选择上面显示的用反引号设置的列名,因此您需要实现以下操作 - select `to`, `from` from yourTableName;让我们首先创建一个列名为 from 和 to(带反引号)的表 - mysql> create table DemoTable720 (    `from` date,    `to` date ); Query OK, 0 rows affected (0.69 sec)使用 insert 命令在表中插入一些记录 - mysql> insert into DemoTable720 values('2019-01-21', '2019-07-23'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable720 values('2017-11-01', '2018-01-31'); Query ... 阅读更多

如何防止 MySQL 字段中出现零值?

AmitDiwan
更新于 2019-08-22 07:22:24

502 次浏览

对表使用 BEFORE INSERT 触发器以防止 MySQL 字段中出现零值。让我们首先创建一个表 - mysql> create table DemoTable(Value int); Query OK, 0 rows affected (0.85 sec)让我们创建一个触发器以防止 MySQL 字段中出现零值 - mysql> DELIMITER // mysql> create trigger preventing_to_insert_zero_value    before insert on DemoTable    for each row    begin       if(new.Value = 0) then SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = '您不能提供 0 值';    END if; end // Query OK, 0 rows affected (0.34 sec) mysql> DELIMITER ... 阅读更多

MySQL 查询中的斜杠是什么意思?

AmitDiwan
更新于 2019-08-22 07:19:47

613 次浏览

斜杠在 MySQL 查询中表示除法 (/)。这可以用于除两个数字。在这里,我们将看到一个示例,将来自两个列的数字相除并在新列中显示结果。让我们首先创建一个表 - mysql> create table DemoTable719 (    FirstNumber int,    SecondNumber int ); Query OK, 0 rows affected (0.57 sec)使用 insert 命令在表中插入一些记录 - mysql> insert into DemoTable719 values(20, 10); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable719 values(500, 50); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable719 values(400, 20); ... 阅读更多

如何查找 MySQL 中不在指定数组中的所有记录?

AmitDiwan
更新于 2019-08-22 07:17:39

2K+ 次浏览

为此,您可以使用 NOT IN() 函数。让我们首先创建一个表 - mysql> create table DemoTable718 (    Id int,    FirstName varchar(100),    Age int ); Query OK, 0 rows affected (0.59 sec)使用 insert 命令在表中插入一些记录 - mysql> insert into DemoTable718 values(101, 'Chris', 26); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable718 values(102, 'Robert', 24); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable718 values(103, 'David', 27); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable718 values(104, 'Mike', 28); Query OK, 1 row affected (0.19 sec) mysql> ... 阅读更多

如何在 MySQL 中生成一个随机的四位数?

AmitDiwan
更新于 2019-08-22 07:15:42

770 次浏览

让我们首先创建一个表 - mysql> create table DemoTable717 (    UserId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    UserPassword int ); Query OK, 0 rows affected (0.81 sec)使用 insert 命令在表中插入一些记录 - mysql> insert into DemoTable717(UserPassword) values(1454343); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable717(UserPassword) values(674654); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable717(UserPassword) values(989883); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable717(UserPassword) values(909983); Query OK, 1 row affected (0.15 sec)使用 select 语句显示表中的所有记录 - mysql> select *from DemoTable717;这将 ... 阅读更多

使用 MySQL IF 语句更新表中的多个值

AmitDiwan
更新于 2019-08-22 07:14:13

394 次浏览

让我们首先创建一个表 - mysql> create table DemoTable716 (    Id varchar(100),    Value1 int,    Value2 int,    Value3 int ); Query OK, 0 rows affected (0.65 sec)使用 insert 命令在表中插入一些记录 - mysql> insert into DemoTable716 values('100', 45, 86, 79); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable716 values('101', 67, 67, 99); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable716 values('102', 77, 57, 98); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable716 values('103', 45, 67, 92); Query OK, 1 row affected (0.16 sec)显示所有 ... 阅读更多

是否可以使用 MySQL 对包含字符串和数字值的 varchar 数据进行升序排序?

AmitDiwan
更新于 2019-08-22 07:17:28

86 次浏览

为此,您可以使用 ORDER BY IF(CAST())。让我们首先创建一个表 - mysql> create table DemoTable(EmployeeCode varchar(100)); Query OK, 0 rows affected (1.17 sec)使用 insert 命令在表中插入一些记录 - mysql> insert into DemoTable values('190'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('100'); Query OK, 1 row affected (0.30 sec) mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable values('120'); Query OK, 1 row affected (0.21 sec)使用 select 语句显示表中的所有记录 - mysql> select *from DemoTable;这将产生以下输出 - +--------------+ ... 阅读更多

广告