mysql相關操作

2021-10-05 06:12:12 字數 730 閱讀 6924

一 時間操作方面

1. timestampdiff函式

timestampdiff函式日期或日期時間表示式之間的整數差。

語法:timestampdiff(interval,datetime1,datetime2),比較的單位interval可以為以下數值

frac_second。表示間隔是毫秒

second。秒

minute。分鐘

hour。小時

day。天

week。星期

month。月

quarter。季度

year。年

timestampdiff函式對日期差值的計算方式為datetime2-datetime1的差值。

2.

year(),從時間字段獲取年

quarter(),從時間字段獲取季度

month(),從時間字段獲取月

week(),從時間字段獲取周

yearweek(),從時間字段獲取年和周

3.date_sub()函式

語法: date_sub(時間,interval expr type)

select * from test where year(created_time)=year(date_sub(now(),interval 1 year));

4.concat 資料拼接問題:[資料拼接](

mysql相關操作 mysql 相關操作

1 登入 mysql u root p 2 檢視當前有的資料庫 show databases 3 建立資料庫 create database 資料庫名 4 操作 使用 資料庫 use 資料庫名 5 檢視有哪些表 show tables 6 建立表 create table 表名 7 刪除表 drop...

mysql 的相關操作 mysql 相關操作

mysql u root p 回撤後輸入密碼 123456,進入mysql 資料庫簡單操作 1 建立資料庫 create database 資料庫名稱 2 檢視資料庫 show databases 3 刪除資料庫 drop database 資料庫名稱 4 開啟資料庫 use 資料庫名稱 資料表簡單...

mysql 的相關操作 MySQL相關操作知識

1 解決客戶端聯不上mysql伺服器的問題 grant all privileges on to root identified by with grant option flush privileges 2 登陸mysql mysql u root p 123456 3 檢視所有資料庫 show ...