2012年4月8日 星期日

寫給我自己參考的mysql範例

GROUP  BY句子 : 
$query =
 " SELECT  SCHOOL_ITEM , IDENTITY , COUNT( * ) as TOTAL_COUNT FROM student
 where
(SET_TIME between '" . $_POST['form_year'] . "-" . $_POST['form_month'] . "-" . $_POST['form_day'] . "' and '" . $_POST['end_year'] . "-" . $_POST['end_month'] . "-" . $_POST['end_day'] . "')
GROUP BY SCHOOL_ITEM 
ORDER BY SCHOOL_ITEM " ;


LIKE  : 
LIKE '%".$keywords."%'

沒有留言:

張貼留言

若你看的文章,時間太久遠的問題就別問了,因為我應該也忘了... XD

Vue multiselect set autofocus and tinymce set autofocus

要在畫面一進來 focus multiselect 的方式: 參考: https://jsfiddle.net/shentao/mnphdt2g/ 主要就是在 multiselect 的 tag 加上 ref (例如: my_multiselect), 另外在 mounted...