select*from tr where tr_a ='2020'and ic ='20'and ia ='2'//查询表tr,列tr_a为2020、ic为20、ia为2 的所有数据select*from tr_a where e_date ='20'//查询表tr_a数据列e_date为20的所有数据select*from`tr_a`//查询tr_a数据表。*号为所有数据列,可单独提取数据列如id,naselect*from tr_a where age like'1_%';//查询表tr_a数据列age开头为1x的数据select*from tr_a where age between18and22;//查询表tr_a数据列age 18到22行的数据select*from tr_a where age in(18,22);//查询age等于18和22select*from tr_a where age like'%z%';//查询包含z的所有数据select*from tr_a where age isnull;//查询字段age为空的SELECT*FROM pri WHEREgoNOT REGEXP '[已]'//查询表pri,列go,除了“已”之外的数据
2、批量修改数据列的数据
UPDATE`ims_m`SET`salt`='P3'//修改ims_m表内列表为salt的所有数据为P3UPDATE ims_m set salt =CONCAT("前缀-",salt)//修改ims_m表内列表为salt的所有数据前缀加入“前缀-”
//安装nmclisudo apt-get install nmcli//查看网络设备sudo nmcli dev//开启wifisudo nmcli r wifi on//扫描wifisudo nmcli dev wifi//连接wifisudo nmcli dev wifi connect "wifi名" password "密码"//忘记wifinmcli con del wifi名