找到 4219 篇文章 关于 MySQLi

MySQL 中的 AUTO_INCREMENT 默认情况下可以带符号吗?

Rama Giri
更新于 2019-07-30 22:30:26

261 次浏览

是的,MySQL 中的 AUTO_INCREMENT 默认情况下将带符号(正值和负值)。让我们首先创建一个表 -mysql> create table DemoTable    -> (    -> MyNumber int AUTO_INCREMENT PRIMARY KEY    -> ); Query OK, 0 rows affected (0.45 sec)使用 insert 命令在表中插入一些记录。在这里,我们也为 AUTO_INCREMENT 列设置了负值 -mysql> insert into DemoTable values() ; Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable values(-100); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values(-300); Query OK, 1 row affected ... 阅读更多

如何在 MySQL 中对字母数字列进行排序?

Sharon Christine
更新于 2020-06-30 12:16:32

1K+ 次浏览

要对具有“100X”、“2Z”等值的字母数字列进行排序,请使用 ORDER BY。让我们首先创建一个表 -mysql> create table DemoTable -> ( -> StudentId varchar(100) -> ); Query OK, 0 rows affected (0.52 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values('2X'); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable values('100Y'); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable values('100X'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values('2Z'); Query OK, 1 row affected (0.14 sec) mysql> ... 阅读更多

将两列的值相乘并在 MySQL 中显示在新列中?

Kumar Varma
更新于 2019-07-30 22:30:26

3K+ 次浏览

让我们首先创建一个表 -mysql> create table DemoTable    -> (    -> NumberOfItems int,    -> Amount int    -> ); Query OK, 0 rows affected (0.57 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values(4, 902); Query OK, 1 row affected (0.45 sec) mysql> insert into DemoTable values(5, 1000); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values(3, 80); Query OK, 1 row affected (0.12 sec)使用 select 语句显示表中的所有记录 -mysql> select *from DemoTable;Output+---------------+--------+ | NumberOfItems | Amount | +---------------+--------+ |   ... 阅读更多

如何在 MySQL 中组合两个表并添加一个包含记录的新列?

Rama Giri
更新于 2019-07-30 22:30:26

466 次浏览

让我们首先创建一个表 -mysql> create table DemoTable1    -> (    -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    -> Name varchar(100)    -> ); Query OK, 0 rows affected (0.76 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1(Name) values('Chris'); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable1(Name) values('Robert'); Query OK, 1 row affected (0.13 sec)使用 select 语句显示表中的所有记录 -mysql> select *from DemoTable1;Output+----+--------+ | Id | Name   | +----+--------+ |  1 | Chris  | |  2 | Robert | +----+--------+ 2 ... 阅读更多

如何在单个查询中获取不同数据库中两个表的行数?

karthikeya Boyini
更新于 2020-06-30 12:21:37

362 次浏览

为此,您可以使用聚合函数 COUNT(*)。让我们首先在假设名为“web”的数据库中创建一个表 -mysql> create table DemoTable1    -> (    -> Value int    -> ); Query OK, 0 rows affected (0.60 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1 values(10); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable1 values(20); Query OK, 1 row affected (0.15 sec)使用 select 语句显示表中的所有记录 -mysql> select *from DemoTable1;Output这将产生以下输出 -+-------+ | Value | +-------+ |    10 | | ... 阅读更多

更新 MySQL 中具有重复 ID 的表

Kumar Varma
更新于 2019-07-30 22:30:26

541 次浏览

以下是语法 -update yourTableName set yourColumnName1= yourValue where yourColumnName2=yourValue order by yourColumnName2 DESC LIMIT 1;让我们首先创建一个表 -mysql> create table DemoTable    -> (    -> Id int,    -> Name varchar(100)    -> ); Query OK, 0 rows affected (0.61 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values(1, 'John'); Query OK, 1 row affected (0.41 sec) mysql> insert into DemoTable values(2, 'Chris'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable values(2, 'Robert'); Query OK, 1 row affected (0.14 sec) mysql> insert into ... 阅读更多

如何查看 MySQL 视图的构成?

karthikeya Boyini
更新于 2020-06-30 11:54:49

119 次浏览

以下是语法 -show create view yourViewName;让我们首先创建一个表 -mysql> create table DemoTable -> ( -> StudentName varchar(20) -> ); Query OK, 0 rows affected (0.56 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values('Chris'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('Robert'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values('David'); Query OK, 1 row affected (0.13 sec)使用 select 语句显示表中的所有记录 -mysql> select *from DemoTable;Output这将产生以下输出 -+-------------+ | StudentName | +-------------+ | ... 阅读更多

如何在 MySQL 中搜索和替换字符串开头的特定字符?

Rama Giri
更新于 2019-07-30 22:30:26

209 次浏览

为此,您可以使用 INSERT()。让我们首先创建一个表 -mysql> create table DemoTable    -> (    -> ZipCode varchar(200)    -> ); Query OK, 0 rows affected (0.47 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values('9030'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable values('3902'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('9083'); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable values('9089'); Query OK, 1 row affected (0.13 sec)使用 select 语句显示表中的所有记录 ... 阅读更多

查找 MySQL 中特定字符串出现的次数?

karthikeya Boyini
更新于 2020-06-30 12:02:21

440 次浏览

为此使用 LENGTH()。让我们首先创建一个表 -mysql> create table DemoTable -> ( -> Value text -> ); Query OK, 0 rows affected (0.74 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values('10, 20, 10, 30, 10, 40, 50, 40'); Query OK, 1 row affected (0.24 sec)使用 select 语句显示表中的所有记录 -mysql> select *from DemoTable;Output这将产生以下输出 -+-------------------------+ | Value | +-------------------------+ | 10, 20, 10, 30, ... 阅读更多

如何在 MySQL 中已创建的表中插入 auto_increment?

karthikeya Boyini
更新于 2020-06-30 12:03:12

195 次浏览

为此使用 ALTER 命令。让我们首先创建一个表 -mysql> create table DemoTable -> ( -> StudentName varchar(100) -> ); Query OK, 0 rows affected (0.46 sec)以下是插入 auto_increment 的查询 -mysql> alter table DemoTable ADD COLUMN StudentId int NOT NULL; Query OK, 0 rows affected (0.50 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> alter table DemoTable ADD PRIMARY KEY(StudentId); Query OK, 0 rows affected (1.23 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> alter table DemoTable CHANGE StudentId StudentId int NOT NULL AUTO_INCREMENT; Query OK, 0 rows affected (2.20 sec) Records: 0 ... 阅读更多

广告