找到 4379 篇文章 关于 MySQL
214 次查看
要从逗号分隔的列中搜索,请使用 FIND_IN_SET() 方法。 让我们先创建一个表 −mysql> create table DemoTable -> ( -> Value varchar(20) -> ); Query OK, 0 rows affected (0.47 sec) 使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable values('41, 14, 94'); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable values('64, 84, 94'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values('44, 74, 103, 104'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values('904, 1004, 1444, 1544'); Query OK, 1 row ... 阅读更多
188 次查看
要保持 ID 的自定义顺序,请使用 ORDER BY CASE 语句。 让我们先创建一个表 −mysql> create table DemoTable1550 -> ( -> Id int, -> Name varchar(20) -> ); Query OK, 0 rows affected (0.61 sec) 使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable1550 values(101, 'Chris'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable1550 values(110, 'Bob'); Query OK, 1 row affected (0.29 sec) mysql> insert into DemoTable1550 values(105, 'Carol'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable1550 values(109, 'Mike'); Query OK, 1 row ... 阅读更多
340 次查看
为此,您可以使用 INSERT INTO SELECT 语句。 要格式化日期,请使用 DATE_FORMAT() 函数。 让我们先创建一个表 −mysql> create table DemoTable -> ( -> DateOfJoining datetime, -> JoiningDate text -> ); Query OK, 0 rows affected (0.79 sec) 使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable(DateOfJoining) values('2019-10-26 13:52:10'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable(DateOfJoining) values('2018-12-31 15:20:40'); Query OK, 1 row affected (0.16 sec) 使用 select 语句显示表中的所有记录 −mysql> select *from DemoTable; 这将产生以下输出 −+---------------------+-------------+ ... 阅读更多
223 次查看
show index、show indexes 和 show keys 之间没有区别。 它们的含义相似。让我们先创建一个表 −mysql> create table DemoTable1549 -> ( -> EmployeeId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> EmployeeName varchar(20) -> ); Query OK, 0 rows affected (0.82 sec) 以下是创建索引的查询 −mysql> create index name_index1 on DemoTable1549(EmployeeName); Query OK, 0 rows affected (0.41 sec) Records: 0 Duplicates: 0 Warnings: 0 以下是 SHOW INDEX 查询 −mysql> show index from DemoTable1549; 这将产生以下输出 −+---------------+------------+-------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+---------+ | Table ... 阅读更多
787 次查看
要从逗号分隔的值中提取记录,请使用 MySQL FIND_IN_SET()。 让我们先创建一个表 −mysql> create table DemoTable1548 -> ( -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentName varchar(20), -> ArrayListOfMarks varchar(100) -> ); Query OK, 0 rows affected (0.88 sec) 使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable1548(StudentName, ArrayListOfMarks) values('Chris', '56, 78, 90, 87'); Query OK, 1 row affected (0.29 sec) mysql> insert into DemoTable1548(StudentName, ArrayListOfMarks) values('Bob', '90, 78, 65'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable1548(StudentName, ArrayListOfMarks) values('David', '91, 34, 56, ... 阅读更多
159 次查看
为此,您需要比较并查找当前日期与学生结果日期之间的差异。 这可以使用 AND 运算符以及 DATEDIFF() 来完成。让我们先创建一个表 −mysql> create table DemoTable1547 -> ( -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentName varchar(20), -> StudentMarks int, -> StudentResultDeclareDate datetime -> ); Query OK, 0 rows affected (0.55 sec) 使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable1547(StudentName, StudentMarks, StudentResultDeclareDate) values('Chris', 56, '2019-10-13 13:00:00') -> ; Query OK, 1 row affected (0.16 ... 阅读更多
265 次查看
为此,您可以使用 CASE 语句。 要排序,请使用 ORDER BY 子句。 让我们先创建一个表 −mysql> create table DemoTable -> ( -> ClientId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> ClientName varchar(20) -> ); Query OK, 0 rows affected (0.54 sec) 使用 insert 命令在表中插入一些记录。某些记录具有某些最后一个字符串,例如 -D 等 −mysql> insert into DemoTable(ClientName) values('Mike'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable(ClientName) values('John'); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable(ClientName) values('John-D'); Query OK, 1 ... 阅读更多
221 次查看
让我们先创建一个表 −mysql> create table DemoTable1546 -> ( -> Number varchar(20) -> ); Query OK, 0 rows affected (0.99 sec) 使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable1546 values('145 78 90'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable1546 values('89 789 564 903'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable1546 values('1345 7894 866 653534'); Query OK, 1 row affected (0.12 sec) 使用 select 语句显示表中的所有记录 −mysql> select * from DemoTable1546; 这将产生以下输出 −+----------------------+ | Number ... 阅读更多
164 次查看
为了理解,让我们创建一个存储过程。 在这里,我们在存储过程中有两个 select 语句 −mysql> DELIMITER // mysql> CREATE PROCEDURE select_statement() -> BEGIN -> SELECT "HI" AS `FIRST VALUE`; -> SELECT "HELLO" AS `SECOND VALUE`; -> END -> // Query OK, 0 rows affected (0.09 sec) mysql> DELIMITER ; 使用 CALL 命令调用存储过程 −mysql> CALL select_statement(); 这将产生以下输出 −+-------------+ | FIRST VALUE | +-------------+ | HI | +-------------+ 1 row in set (0.00 sec) +--------------+ | SECOND VALUE | +--------------+ | HELLO | +--------------+ 1 row in set (0.01 sec) Query OK, 0 rows affected (0.01 sec)
813 次查看
让我们先创建一个表 −mysql> create table DemoTable -> ( -> Name text -> ); Query OK, 0 rows affected (0.47 sec) 使用 insert 命令在表中插入一些记录 −mysql> insert into DemoTable values('John [John] Smith'); Query OK, 1 row affected (0.30 sec) mysql> insert into DemoTable values('[Carol] Carol Taylor'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values('David [Miller] Miller'); Query OK, 1 row affected (0.14 sec) 使用 select 语句显示表中的所有记录 −mysql> select *from DemoTable; 这将产生以下输出 −+-----------------------+ | Name ... 阅读更多