发布时间:2014-08-06 17:57:53
select u.userName,o.time,o.dev,o.cmd from onlineRecord o join user u on o.uid=u.uid;......【阅读全文】
发布时间:2014-08-06 17:44:15
1. select column1_name,column2_name... from table1 into table2;2. 有的数据库不支持这种语法,可以这样解决:create table table2 (select column1_name,column2_name.. from table1);......【阅读全文】
发布时间:2014-07-24 11:02:50
rootkit hunterrootkit:隐匿技术;隐匿程式hunter:猎手由 Michael Boelen 开发的开源(GPL)软件。......【阅读全文】
发布时间:2014-07-23 21:06:39
dmidecode is a tool for dumping a computer’s DMI (some say SMBIOS) table contents in a human-readable format.DMI (Desktop Management Interface, DMI)的主要组成部分是Management InformationFormat (MIF)数据库。这个数据库包括了所有有关电脑系统和配件的信息。通过DMI,用户可以获取序列号、电脑.........【阅读全文】
发布时间:2014-07-23 11:40:57
next:结束本次循环,进入下次循环。加上 LABEL 也就指定了进入哪层循环的下次循环。因为“next LABEL;” 语句可能处于多层循环嵌套的内层循环中,想直接进入外层循环的下次循环就只能这样做。......【阅读全文】