1.查詢select
select column_name,column_name from table_name [where clause] [limit n] [ offset m]
where 條件 name='mary'
limit 返回幾條資料
offset 從第幾條開始
2.修改update
update table_name set field1=new-value1, field2=new-value2 [where clause]
3.刪除delete
delete from table_name [where clause]
4.增加add
insert into table_name ( field1, field2,...fieldn ) values ( value1, value2,...valuen );
5.排序order by asc desc
6.包含有 like whererunlike'%com'; run字斷中有.com
7聯表查詢
(a)內連線:join,inner join
(b)外連線:left join,left outer join,right join,right outer join,union
(c)交叉連線:cross join
8.查詢每天資料總量
select date_format(up_date,'%y-%m-%d') as m,count(*) from log where up_date between '2018-02-02 09:18:36' and '2021-03-05 23:18:36' and type=1 group by m;
利用mysql時間函式監控表中有沒有當天資料
監控mysql表中資料,如果沒有當天的資料就用zabbix報警 mysql錶用有時間列,需要使用時間函式做判斷 1.當前日期函式 mysql select now now 2020 06 12 10 07 07 1 row in set 0.00 sec 2.日期轉換成天數函式 mysql sele...
mysql有沒有num 有關mysql num
1.row mysql fetch row result 返回乙個規則的陣列 row,row 0 是第乙個元素,row 1 是第二個元素,依次類推.mysql num fields result 返回結果的元素個數。2.row mysql fetch array result 返回乙個陣列 row....
第6章 推理過程中有沒有謬誤
人身攻擊 針對個人的人身攻擊或侮辱,而不是直接反駁其提供的理由 有可能假設是明顯錯誤的 滑坡謬誤 假設採取提議的行動會引發一系列不可控的不利事件,而事實上卻有現成的程式來防止這類事故的發生 追求完美解決方案謬誤 假設因為嘗試某種解決方案後會遺留問題,那麼就不應該採取這個方案 推理理由謬誤 偷換概念謬...