摘要:
(config)ip access-list extended 199 (config)10 deny tcp any any eq 2425 (config)20 deny udp any any eq 2425 (config)1000 permit ip any any #这一条必须有 选择5 阅读全文
摘要:
删除:delete from user(删除user表中所有记录)不带星号 显示记录数:select count(1) from user (不用count(*)效率低)(1可以替换成字段名: select count(tigan) from tiku) mysql> create database 阅读全文
摘要:
SQL查询窗口 选择哪行执行哪行,不选择则从上到下依次执行 delete from xsxx where xsxm is null /****** 删除所有xsxm为null的记录******/ select * from xsxx where xsxm like '张%' //显示所有姓张的记录 阅读全文