要开发一个C应用程序(.exe文件),大体上分为5个步骤(不考虑后期维护):
问题分析――分析要解决的问题,明确问题目标,将问题(尤其是复杂问题)分解为在数据、
-To develop a C application (. Exe file), generally divided into five steps (without regard to post-maintenance): Problem Analysis- Analysis of issues to be addressed explicitly the issue of targets, the problem (in particular, are complex issues) is decomposed into in the data,
SHOW FULL COLUMNS FROM `jrk_downrecords` [ RunTime:0.001131s ]
SELECT `a`.`aid`,`a`.`title`,`a`.`create_time`,`m`.`username` FROM `jrk_downrecords` `a` INNER JOIN `jrk_member` `m` ON `a`.`uid`=`m`.`id` WHERE `a`.`status` = 1 GROUP BY `a`.`aid` ORDER BY `a`.`create_time` DESC LIMIT 10 [ RunTime:0.077113s ]
SHOW FULL COLUMNS FROM `jrk_tagrecords` [ RunTime:0.001036s ]
SELECT * FROM `jrk_tagrecords` WHERE `status` = 1 ORDER BY `num` DESC LIMIT 20 [ RunTime:0.001172s ]
SHOW FULL COLUMNS FROM `jrk_member` [ RunTime:0.000981s ]
SELECT `id`,`username`,`userhead`,`usertime` FROM `jrk_member` WHERE `status` = 1 ORDER BY `usertime` DESC LIMIT 10 [ RunTime:0.003009s ]
SHOW FULL COLUMNS FROM `jrk_searchrecords` [ RunTime:0.000890s ]
SELECT * FROM `jrk_searchrecords` WHERE `status` = 1 ORDER BY `num` DESC LIMIT 5 [ RunTime:0.003554s ]
SELECT aid,title,count(aid) as c FROM `jrk_downrecords` GROUP BY `aid` ORDER BY `c` DESC LIMIT 10 [ RunTime:0.015284s ]
SHOW FULL COLUMNS FROM `jrk_articles` [ RunTime:0.001265s ]
UPDATE `jrk_articles` SET `hits` = 2 WHERE `id` = 131277 [ RunTime:0.013899s ]