找到关于数据库的6705篇文章

MySQL - 将表引擎从InnoDB更改为MyISAM?

AmitDiwan
更新于 2019年12月31日 08:06:19

285 次浏览

让我们先创建一个表 −mysql> create table DemoTable1982    (    StudentId int    ,    StudentName varchar(20),    StudentAge int    ); Query OK, 0 rows affected (0.00 sec)让我们检查表引擎类型 -mysql> show create table DemoTable1982;这将产生以下输出 −+---------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Table         | Create Table                                                                                   ... 阅读更多

MySQL 查询,用于计算来自 5 个表中名为“UP”的相似列的总和?

AmitDiwan
更新于 2019年12月31日 08:02:41

441 次浏览

为此,请使用 UNION ALL 和 SUM()。让我们创建 5 个表 −mysql> create table DemoTable1977    (    UP int    ); Query OK, 0 rows affected (0.00 sec) mysql> insert into DemoTable1977 values(10); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1977 values(20); Query OK, 1 row affected (0.00 sec) mysql> select * from DemoTable1977; +------+ | UP   | +------+ |   10 | |   20 | +------+ 2 rows in set (0.00 sec) mysql> create table DemoTable1978    (    UP int    ); Query OK, 0 rows affected (0.00 sec) mysql> ... 阅读更多

如果为 NULL,则更新列 A;否则,更新列 B;如果两列均不为 NULL,则对 MySQL 不做任何操作

AmitDiwan
更新于 2019年12月31日 07:59:15

1K+ 次浏览

为此,请使用带有 IS NULL 属性的 IF()。让我们先创建一个表 −mysql> create table DemoTable1976    (    FirstName varchar(20),    LastName varchar(20)    ); Query OK, 0 rows affected (0.00 sec)使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable1976 values('John', 'Doe'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1976 values('John', NULL); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1976 values(NULL, 'Miller'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1976 values('Chris', 'Brown'); Query OK, 1 row affected (0.00 sec)显示表中的所有记录 ... 阅读更多

MySQL 查询,用于计算两列中的所有列值,并在总计中排除 NULL 值?

AmitDiwan
更新于 2019年12月31日 07:56:49

181 次浏览

让我们先创建一个表 −mysql> create table DemoTable1975    (    StudentName varchar(20),    StudentMarks int    ); Query OK, 0 rows affected (0.00 sec)使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable1975 values('John', 45); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1975 values('Chris', 67); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1975 values('David', 59); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1975 values('Bob', NULL); Query OK, 1 row affected (0.00 sec)使用 select 语句显示表中的所有记录 −mysql> select * from DemoTable1975;这 ... 阅读更多

动态 SQL,用于获取参数并在存储过程中创建的新表中将其用于 LIKE

AmitDiwan
更新于 2019年12月31日 07:54:52

453 次浏览

为此,请使用预处理语句。让我们先创建一个表 −mysql> create table DemoTable1973    (    StudentId int,    StudentName varchar(20)    ); Query OK, 0 rows affected (0.00 sec)使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable1973 values(101, 'Chris'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1973 values(102, 'John Doe'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1973 values(103, 'David'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1973 values(104, 'John Smith'); Query OK, 1 row affected (0.00 sec)使用 ... 阅读更多

MySQL 查询,用于从行中获取特定行

AmitDiwan
更新于 2019年12月31日 07:52:57

375 次浏览

让我们先创建一个表 −mysql> create table DemoTable1972    (    Section char(1),    StudentName varchar(20)    ); Query OK, 0 rows affected (0.00 sec)使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable1972 values('D', 'Chris'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1972 values('B', 'David'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1972 values('A', 'Mike'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1972 values('C', 'Carol'); Query OK, 1 row affected (0.00 sec)使用 select 语句显示表中的所有记录 −mysql> select * from DemoTable1972;这 ... 阅读更多

带有 SELECT 的 MySQL 过程,用于返回整个表

AmitDiwan
更新于 2019年12月31日 07:49:56

3K+ 次浏览

让我们先创建一个表 −mysql> create table DemoTable1971    (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentName varchar(20),    StudentPassword int    ); Query OK, 0 rows affected (0.00 sec)使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable1971(StudentName, StudentPassword) values('John', '123456'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1971(StudentName, StudentPassword) values('Chris', '123456'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1971(StudentName, StudentPassword) values('David', '123456'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1971(StudentName, StudentPassword) values('Mike', '123456'); Query OK, 1 row affected (0.00 sec)显示所有 ... 阅读更多

根据数字值对以数字分隔的字符串记录进行排序,例如 CSE 15、CSE 11 等?

AmitDiwan
更新于 2019年12月31日 07:45:16

81 次浏览

让我们先创建一个表 −mysql> create table DemoTable1969    (    BranchCode varchar(20)    ); Query OK, 0 rows affected (0.00 sec)使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable1969 values('CSE 101'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1969 values('CSE 11'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1969 values('CSE 15'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1969 values('CSE 6'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1969 values('CSE 201'); Query OK, 1 row affected (0.00 sec) mysql> insert into ... 阅读更多

在 MySQL 中为前三列的值设置特定值?

AmitDiwan
更新于 2019年12月31日 07:42:15

169 次浏览

要仅为前三个值设置特定值,需要使用 LIMIT 3。让我们先创建一个表:
mysql> create table DemoTable1968
   (
   Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   Name varchar(20)
   );
Query OK, 0 rows affected (0.00 sec)
使用 insert 命令在表中插入一些记录:
mysql> insert into DemoTable1968(Name) values('Chris');
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1968(Name) values('David');
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1968(Name) values('Sam');
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1968(Name) values('Mike');
Query OK, 1 ... 阅读更多

在 MySQL 表中选择和插入带有前导零的值

AmitDiwan
更新于 2019-12-31 07:37:56

浏览量:109

为此,您可以使用 INSERT INTO SELECT 语句以及 LPAD()。让我们先创建一个表:
mysql> create table DemoTable1967
   (
   Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   UserId varchar(20)
   );
Query OK, 0 rows affected (0.00 sec)
使用 insert 命令在表中插入一些记录:
mysql> insert into DemoTable1967(UserId)
   select LPAD(COALESCE(MAX(id), 0) + 1, 3, '0') from DemoTable1967;
Query OK, 1 row affected (0.00 sec)
Records: 1 Duplicates: 0 Warnings: 0
mysql> insert into DemoTable1967(UserId)
   select LPAD(COALESCE(MAX(id), 0) + 1, 3, '0') from DemoTable1967;
Query OK, 1 row affected (0.00 sec) ... 阅读更多

广告