mysql那些總是記不住的坑 1

2021-08-21 10:19:32 字數 1308 閱讀 3190

廢話少說、純手打的筆記,就是不想記這些東西 ovo

1.查詢指定日期和指定的月份

select

*from

list_notify

where date_format(past_date,'%y%m%d') = '20180720'

select

*from

list_notify

where date_format(

past_date,'%y%m') = '201706'
年份同理、修改一下日期格式就行

2、日期區間查詢

select

*from

list_notify

where date_format(past_date,'%y%m%d') between '20180601' and '20180730'

月份區間做一些相應的修改就行

3、查詢在指定日期之間的資料、這條比較有用,列如在通知顯示中,要查詢發布日期在今日之前,結束日期在n時間之後的有效期內的資料(表達不甚明了、悟一下

select * from list_notify where unix_timestamp('2018-07-22 00:00:00') < unix_timestamp(past_date) and unix_timestamp('2018-07-13 00:00:00') > unix_timestamp(publish_date);
或者這樣

select * from student where '2012-02-27 00:00:00' < created_date and '2012-02-29 00:00:00' > created_date
4、查詢一張表有多少列

select

count(*)

from

information_schema. columns

where

table_schema = '資料庫名'

and table_name = '表名';

select table_name,column_name from information_schema.columns where column_name like '%teacher%' and table_name='list_class'

那些年總是記不住的前端寫法!

easyui 的時間格式 錯誤的 正確的 js設定下拉框disable 取值不行,combotree換成combobox也是一樣的 systemtype combobox js設定下拉框easyui combobox唯讀 id combobox readonly true 唯讀 id combobo...

總是記不住但又總是要用的css

input webkit input placeholder input moz placeholder input ms input placeholder input moz placeholderinput focusinput css主要部分的樣式 定義滾動條寬高及背景,寬高分別對應橫豎滾動...

那些總記不住的css,而且還經常用到

一 設定input 的placeholder的字型樣式 input webkit input placeholder input moz placeholder input ms input placeholder input moz placeholder 設定input聚焦時的樣式 input ...