select*from`tr_a`//查询tr_a数据表。*号为所有数据列,可单独提取数据列如id,naselect*from tr_a where e_date ='20'//查询表tr_a数据列e_date为20的所有数据where tr_a in ('62','63')//查询数据列tr_a为62、63的所有数据where tr_a ='2020'and ic ='20'and ia ='2'//查询数据列tr_a为2020、ic为20、ia为2 的所有数据
2、模糊查询某列某数据
select*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为空的
//安装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名
请登录以参与评论
现在登录