找到 4219 篇文章,关于 MySQLi

如何向 MySQL 表中添加一列,该列的值是文本和另一个自动递增列值的组合?

AmitDiwan
更新于 2019-08-20 09:09:39

409 次浏览

为此,您可以使用 LAST_INSERT_ID()。让我们先创建一个表:mysql> create table DemoTable ( UserId int(6) unsigned zerofill NOT NULL AUTO_INCREMENT, UserAutoIncrement char(100) default null, PRIMARY KEY(UserId) ); Query OK, 0 rows affected (0.72 sec) 使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values(); Query OK, 1 row affected (0.13 sec) 使用 select 语句显示表中的所有记录:mysql> select *from DemoTable;输出+--------+-------------------+ | UserId | UserAutoIncrement | +--------+-------------------+ | 000001 | NULL | +--------+-------------------+ ... 阅读更多

如何在 MySQL 中将秒舍入到最接近的半分钟?

AmitDiwan
更新于 2020-07-02 06:45:14

261 次浏览

要将秒舍入到最接近的半分钟,请使用 CEILING()。让我们先创建一个表:mysql> create table DemoTable (secondValue int); Query OK, 0 rows affected (0.64 sec)示例使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values(27); Query OK, 1 row affected (0.24 sec) mysql> insert into DemoTable values(56); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values(118); Query OK, 1 row affected (0.20 sec) 使用 select 语句显示表中的所有记录:mysql> select *from DemoTable;输出+-------------+ | secondValue | +-------------+ | 27 | | 56 | ... 阅读更多

如何使用 MySQL 获取特定单词在一列中出现的次数?

Sharon Christine
更新于 2020-06-30 14:59:08

1K+ 次浏览

为此,您可以使用 COUNT() 函数。让我们先创建一个表:mysql> create table DemoTable -> ( -> EmployeeId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> EmployeeName varchar(100) -> ); Query OK, 0 rows affected (0.62 sec) 使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable(EmployeeName) values('John'); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable(EmployeeName) values('Carol'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable(EmployeeName) values('David'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable(EmployeeName) values('Carol'); Query OK, 1 row affected ... 阅读更多

在 MySQL 中添加两列的值,将 NULL 值视为零

Sharon Christine
更新于 2020-06-30 15:00:17

821 次浏览

为此,请使用 MySQL 中的 COALESCE() 函数。让我们先创建一个表:mysql> create table DemoTable -> ( -> Value1 int, -> Value2 int -> ); Query OK, 0 rows affected (0.51 sec) 使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values(100, 200); Query OK, 1 row affected (0.27 sec) mysql> insert into DemoTable values(NULL, 90); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values(NULL, NULL); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values(600, NULL); Query OK, 1 row affected (0.12 sec) 显示表中的所有记录: ... 阅读更多

使用 MySQL 中的用户定义变量将数据库字段值增加指定百分比

karthikeya Boyini
更新于 2020-06-30 15:01:18

324 次浏览

让我们先创建一个表:mysql> create table DemoTable -> ( -> Amount int -> ); Query OK, 0 rows affected (0.99 sec) 使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values(100); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable values(200); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values(500); Query OK, 1 row affected (0.13 sec) 使用 select 语句显示表中的所有记录:mysql> select *from DemoTable;输出这将产生以下输出:+--------+ | Amount | +--------+ | 100 | | 200 | ... 阅读更多

MySQL 查询:如果字符串超过 10 个单词,则添加省略号?

karthikeya Boyini
更新于 2020-06-30 15:04:24

290 次浏览

为此,请使用 CASE 语句。让我们先创建一个表:mysql> create table DemoTable -> ( -> Title text -> ); Query OK, 0 rows affected (0.61 sec) 使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values('My name is John and this is my first tutorial on MySQL'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values('This is Carol and I work on MongoDB'); Query OK, 1 row affected (0.19 sec) 使用 select 语句显示表中的所有记录:mysql> select *from DemoTable;输出这将产生以下输出:+--------------------------------------------------------+ | Title | ... 阅读更多

返回列值的 MySQL 存储过程?

Sharon Christine
更新于 2020-06-30 15:05:27

860 次浏览

让我们先创建一个表:mysql> create table DemoTable -> ( -> Id int, -> Score int -> ); Query OK, 0 rows affected (0.69 sec) 使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values(1, 858858686); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values(2, 9900554); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable values(3, 646565667); Query OK, 1 row affected (0.15 sec) 使用 select 语句显示表中的所有记录:mysql> select *from DemoTable;输出这将产生以下输出:+------+-----------+ | Id | Score | +------+-----------+ | 1 | 858858686 | ... 阅读更多

在 MySQL 中交换两列的数据?

Sharon Christine
更新于 2020-06-30 15:06:56

1K+ 次浏览

要在 MySQL 中交换两列的数据,请使用变量的概念。让我们先创建一个表。在这里,我们将 Name1 与 Name2 交换:mysql> create table DemoTable -> ( -> Name1 varchar(100), -> Name2 varchar(100) -> ); Query OK, 0 rows affected (0.58 sec) 使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable values('John Smith', 'Chris Brown'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values('David Miller', 'Jone Doe'); Query OK, 1 row affected (0.16 sec) 使用 select 语句显示表中的所有记录:mysql> select *from DemoTable;输出这将产生 ... 阅读更多

MySQL 查询:递增其中一列的值

karthikeya Boyini
更新于 2020-06-30 14:43:15

1K+ 次浏览

让我们先创建一个表:mysql> create table DemoTable -> ( -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> Name varchar(100), -> Score int -> ); Query OK, 0 rows affected (0.78 sec) 使用 insert 命令在表中插入一些记录:mysql> insert into DemoTable(Name, Score) values('John', 68); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable(Name, Score) values('Carol', 98); Query OK, 1 row affected (0.27 sec) mysql> insert into DemoTable(Name, Score) values('David', 89); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable(Name, Score) values('Robert', 67); Query OK, 1 row affected ... 阅读更多

MySQL 查询:首先按降序排列负值,然后按升序排列正值

karthikeya Boyini
更新于 2020-06-30 14:45:28

433 次浏览

为此,您可以使用UNION。让我们首先创建一个表:
mysql> create table DemoTable
> (
> Number int
> );
Query OK, 0 rows affected (1.17 sec)
使用insert命令在表中插入一些记录:
mysql> insert into DemoTable values(10);
Query OK, 1 row affected (0.23 sec)
mysql> insert into DemoTable values(100);
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable values(-9);
Query OK, 1 row affected (0.21 sec)
mysql> insert into DemoTable values(-190);
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable values(190);
Query OK, 1 row affected ... 阅读更多

广告