找到 4379 篇文章 关于 MySQL

如何在 MySQL 中替换字符串中第一个重复的值

AmitDiwan
更新于 2020-11-19 12:17:26

325 次查看

为此,您可以使用 REGEXP_REPLACE()。假设我们的字符串是 - This is my first MySQL query. This is the first tutorial. I am learning for the first time.我们需要替换特定单词(例如“first”)的第一次出现。输出应为 - This is my second MySQL query. This is the first tutorial. I am learning for the first time.让我们创建一个表 - mysql> create table demo26 -> ( -> value text -> ); Query OK, 0 rows affected (2.04 sec)使用 insert 命令将一些记录插入表中 - mysql> insert ... 阅读更多

Springboot + JSP + Spring Security:无法配置数据源。如何在 MySQL 中配置数据源?

AmitDiwan
更新于 2020-11-19 12:12:42

109 次查看

要在 Springboot 中配置数据源,您可以在 application.properties 中定义数据源。application.properties 对于 Springboot 如下所示 -spring.datasource.username=yourUserName spring.datasource.password=yourPassword spring.datasource.url=yourDatabaseUrl spring.datasource.driver-class-name=yourDriverClassName项目结构如下所示 -示例要了解上述概念,让我们使用 Spring Boot 创建一个控制器类。Java 代码如下所示 -package com.demo.controller; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.Query; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/users") public class DisplayController {    @Autowired    EntityManager entityManager;    @GetMapping("/getdata")    public String getAll() {       Query data= entityManager.createNativeQuery("select first_name from demo25");       List allData= data.getResultList();       return ... 阅读更多

在 MySQL 中为 JSON 类型列设置默认值?

AmitDiwan
更新于 2020-11-19 12:09:29

1K+ 次查看

要设置默认值,请使用以下语法中的 DEFAULT 约束 -alter table yourTableName modify column yourColumnName JSON NOT NULL DEFAULT ( JSON_OBJECT() );让我们创建一个表 -mysql> create table demo24 -> ( -> employee_information text -> ) -> ; Query OK, 0 rows affected (1.43 sec)这是表的描述。以下是查询 -mysql> desc demo24;这将产生以下输出 -+----------------------+------+------+-----+---------+-------+ | Field                | Type | Null | Key | Default | Extra | +----------------------+------+------+-----+---------+-------+ | employee_information | text | YES  |     | NULL ... 阅读更多

MySQL 查询以获取最大累积值

AmitDiwan
更新于 2020-11-19 12:02:07

219 次查看

为此,请使用聚合函数 COUNT(*) 以及子查询。还使用了 GROUP BY。让我们创建一个表 -mysql> create table demo23 -> ( -> id int not null auto_increment primary key, -> value1 int, -> value2 int -> ); Query OK, 0 rows affected (1.65 sec)使用 insert 命令将一些记录插入表中 -mysql> insert into demo23(value1, value2) values(5, 600); Query OK, 1 row affected (0.20 sec) mysql> insert into demo23(value1, value2) values(20, 800); Query OK, 1 row affected (0.06 sec) mysql> insert into demo23(value1, value2) values(7, 400); Query OK, 1 row affected ... 阅读更多

如果数据不在表 B 中,则将数据插入表 C,同时在 MySQL 中与表 A 进行比较?

AmitDiwan
更新于 2020-11-19 11:59:33

114 次查看

为此,请在表 A 和 B 上使用左连接。让我们创建第一个表 -mysql> create table demo20 -> ( -> id int, -> name varchar(20) -> ); Query OK, 0 rows affected (1.87 sec)使用 insert 命令将一些记录插入表中 -mysql> insert into demo20 values(100, 'John'); Query OK, 1 row affected (0.07 sec) mysql> insert into demo20 values(101, 'Bob'); Query OK, 1 row affected (0.24 sec) mysql> insert into demo20 values(102, 'Mike'); Query OK, 1 row affected (0.12 sec) mysql> insert into demo20 values(103, 'Carol'); Query OK, 1 row ... 阅读更多

如何在 Java 中使用 LIKE 和搜索变量时在 MySQL 中正确使用引号?

AmitDiwan
更新于 2020-11-19 11:34:29

543 次查看

以下是使用 LIKE 和搜索变量的正确语法 -String sqlQuery; sqlQuery = "select *from yourTableName where yourColumnName like '%" +yourSearchVariableName + "%'";让我们创建一个表 -mysql> create table demo19 -> ( -> id int not null auto_increment primary key, -> name varchar(50) -> ); Query OK, 0 rows affected (3.48 sec)使用 insert 命令将一些记录插入表中 -mysql> insert into demo19(name) values('John Smith'); Query OK, 1 row affected (0.15 sec) mysql> insert into demo19(name) values('David Miller'); Query OK, 1 row affected (0.15 sec) mysql> insert into demo19(name) values('Adam Smith'); ... 阅读更多

在 MySQL 中对混合数字的字符串进行排序?

AmitDiwan
更新于 2020-11-19 11:29:49

653 次查看

使用带有一些情况的 ORDER BY。让我们创建一个表 -mysql> create table demo18 -> ( -> value text -> ); Query OK, 0 rows affected (1.18 sec)使用 insert 命令将一些记录插入表中 -mysql> insert into demo18 values('John Smith'); Query OK, 1 row affected (0.06 sec) mysql> insert into demo18 values('2J John has 58'); Query OK, 1 row affected (0.17 sec) mysql> insert into demo18 values('2J John has 9'); Query OK, 1 row affected (0.09 sec)使用 select 语句显示表中的记录 -mysql> select *from demo18;这将产生以下 ... 阅读更多

在 MySQL 中组合 SELECT 和 SHOW 命令的结果?

AmitDiwan
更新于 2020-11-19 11:28:09

277 次查看

要将 SELECT 和 SHOW 命令的结果合并为一个,请使用以下查询 -select @anyVariableName1 as anyAliasName1, @anyVariableName1 as anyAliasName2, ......N;要组合 SELECT 和 SHOW,首先创建并初始化第一个变量。以下是查询 -mysql> set @first_name='John'; Query OK, 0 rows affected (0.00 sec)要组合 SELECT 和 SHOW,请创建并初始化第二个变量。以下是查询 -mysql> set @last_name='Smith'; Query OK, 0 rows affected (0.00 sec)以下是组合 SELECT 和 SHOW 命令的查询 -mysql> select @first_name as EmployeeFirstName, @last_name as EmployeeLastName;这将产生以下输出 -+-------------------+------------------+ | EmployeeFirstName | EmployeeLastName ... 阅读更多

在逗号分隔列表中查找字符串和下一个字符的正则表达式 - MySQL?

AmitDiwan
更新于 2020-11-19 11:25:50

370 次查看

要在逗号分隔列表中搜索,请使用 MySQL find_in_set()。此处不需要为此目的使用正则表达式。语法如下 -select *from yourTableName where find_in_set(anyValue, yourColumnName);让我们创建一个表 -mysql> create table demo17 -> ( -> id int not null auto_increment primary key, -> first_name varchar(50), -> value text -> ); Query OK, 0 rows affected (1.81 sec)使用 insert 命令将一些记录插入表中 -mysql> insert into demo17(first_name, value) values('John', '50'); Query OK, 1 row affected (0.11 sec) mysql> insert into demo17(first_name, value) values('David', ''); Query OK, 1 ... 阅读更多

如何在 MySQL 的 BigQuery 中从时间中提取分钟?

AmitDiwan
更新于 2020-11-19 11:22:56

211 次查看

使用 `extract()` 方法以及 `cast()` 方法进行提取。以下是语法:

广告