找到 4379 篇文章 关于 MySQL

在 SQL 中,如何在不知道 int 类型列当前值的情况下,增加该列的值?

AmitDiwan
更新于 2019-10-07 12:35:18

126 次浏览

为此,只需使用 UPDATE 命令以及 SET。让我们先创建一个表 -mysql> create table DemoTable (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentScore int ); Query OK, 0 rows affected (0.81 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable(StudentScore) values(78); Query OK, 1 row affected (0.46 sec) mysql> insert into DemoTable(StudentScore) values(89); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable(StudentScore) values(67); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable(StudentScore) values(95); Query OK, 1 row affected (0.25 sec)显示表中的所有记录 ... 阅读更多

将 MySQL 数据库表中的日期格式更改为 d/m/y

AmitDiwan
更新于 2019-10-07 12:31:43

333 次浏览

以下是语法 -select date_format(yourColumnName, '%d/%m/%Y') as anyAliasName from yourTableName;让我们先创建一个表 -mysql> create table DemoTable (    AdmissionDate date ); Query OK, 0 rows affected (0.89 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values('2019-01-21'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values('2019-09-09'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values('2018-12-31'); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable values('2017-11-01'); Query OK, 1 row affected (0.16 sec)使用 select 语句显示表中的所有记录 -mysql> select *from DemoTable;这将 ... 阅读更多

MySQL 查询以检查是否存在多行?

AmitDiwan
更新于 2019-10-07 12:29:39

663 次浏览

让我们先创建一个表 -mysql> create table DemoTable1219 (    Id int,    Name varchar(40) ); Query OK, 0 rows affected (0.43 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable1219 values(100, 'Adam'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable1219 values(101, 'John'); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable1219 values(102, 'Chris'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable1219 values(103, 'Bob'); Query OK, 1 row affected (0.18 sec)使用 select 语句显示表中的所有记录 -mysql> select *from DemoTable1219;这将产生 ... 阅读更多

如何使用 Java 将 DATE 插入 MySQL 列值?

AmitDiwan
更新于 2020-02-14 10:23:16

3K+ 次浏览

为此,您可以使用 Java 中的 PreparedStatement。让我们先创建一个表,其中一列是 ArrivalDate,类型为 DATE -mysql> create table DemoTable(    PassengerId int,    PassengerName varchar(40),    ArrivalDate date ); Query OK, 0 rows affected (0.82 sec)以下是插入日期的 JAVA 代码 -import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; public class InsertDateFromJava {    public static void main(String[] args) {       Connection con = null;       PreparedStatement ps = null;       try {          java.util.Date javaDate = new java.util.Date();     ... 阅读更多

在 SQL 中,通过将增量值设置在用户定义的变量中,来增量多个 Timestamp 值

AmitDiwan
更新于 2019-10-07 12:20:14

239 次浏览

增量值可以设置在用户定义的变量中,如下所示。“yourValue” 是增量值。之后,使用 MySQL UPDATE 更新列并增量时间戳值 -set @anyVariableName :=yourValue; update yourTableName set yourColumnName=yourColumnName+interval (@yourVariableName) second;让我们先创建一个表 -mysql> create table DemoTable (    DueDatetime timestamp ); Query OK, 0 rows affected (0.73 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values('2019-01-31 12 :30 :40'); Query OK, 1 row affected (0.25 sec) mysql> insert into DemoTable values('2019-09-06 10 :00 :00'); Query OK, 1 row affected (0.73 sec) ... 阅读更多

在一个 MySQL 查询中计算不同的唯一项目?

AmitDiwan
更新于 2019-10-07 12:15:48

110 次浏览

要计算项目,请使用 COUNT() 以及 DISTINCT。这里,DISTINCT 用于返回唯一值。现在让我们看一个例子并创建一个表 -mysql> create table DemoTable (    CustomerId int,    CustomerName varchar(20),    ProductName varchar(40) ); Query OK, 0 rows affected (1.02 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values(101, 'Chris', 'Product-1'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values(102, 'David', 'Product-2'); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable values(101, 'Chris', 'Product-1'); Query OK, 1 row affected (0.30 sec) mysql> insert ... 阅读更多

如何在 MySQL 中按分组字段排序?

AmitDiwan
更新于 2019-10-07 12:09:11

79 次浏览

要按分组字段排序,请使用 ORDER BY CASE 以及 IN()。CASE 评估不同的条件,而 ORDER BY 以升序或降序对值进行排序。MySQL IN() 用于查找匹配项。让我们先创建一个表 -mysql> create table DemoTable (    Value varchar(40) ); Query OK, 0 rows affected (0.52 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable values('100&101'); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable values('Sam'); Query OK, 1 row affected (0.09 sec) ... 阅读更多

如何使用 MySQL SELECT 1 检查值是否存在?

AmitDiwan
更新于 2019-10-07 12:06:47

293 次浏览

为此,请使用 SELECT 1,如下面的语法所示 -select 1 from yourTableName where yourColumnName=yourValue;如果上述返回 1,则表示该值存在于 MySQL 数据库中。让我们先看一个例子并创建一个表 -mysql> create table DemoTable (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentName varchar(40),    StudentAge int ); Query OK, 0 rows affected (0.46 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable(StudentName, StudentAge) values('Chris', 21); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable(StudentName, StudentAge) values('David', 20); Query OK, 1 row affected (0.16 ... 阅读更多

MySQL CASE 语句将自定义值放在 NULL 的位置

AmitDiwan
更新于 2019-10-07 12:04:05

157 次浏览

让我们先创建一个表 -mysql> create table DemoTable (    FirstName varchar(20) ); Query OK, 0 rows affected (1.15 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values(NULL); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values('Adam'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values(NULL); Query OK, 1 row affected (0.09 sec)使用 select 语句显示表中的所有记录 -mysql> select *from DemoTable;这将产生以下输出 -+-----------+ | FirstName | +-----------+ ... 阅读更多

MySQL 查询使用 AND 和 OR 运算符返回多行记录

AmitDiwan
更新于 2019-10-07 11:55:50

405 次浏览

让我们先创建一个表 -mysql> create table DemoTable (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentName varchar(40),    StudentMathMarks int,    StudentMySQLMarks int,    status ENUM('ACTIVE', 'INACTIVE') ); Query OK, 0 rows affected (0.47 sec)使用 insert 命令在表中插入一些记录 -mysql> insert into DemoTable(StudentName, StudentMathMarks, StudentMySQLMarks, status) values('Chris', 45, 67, 'active'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable(StudentName, StudentMathMarks, StudentMySQLMarks, status) values('Bob', 89, 78, 'inactive'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable(StudentName, StudentMathMarks, StudentMySQLMarks, status) values('David', 56, 68, 'active'); Query OK, 1 row affected ... 阅读更多

广告