摘要:
function getQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if(r != null) return unescape(r[2]); return null;... 阅读全文
摘要:
drop procedure if exists test_insert; DELIMITER ;; CREATE PROCEDURE test_insert () BEGIN DECLARE i INT DEFAULT 1; WHILE i<1000 DO UPDATE `syp2p`.`cus_accountseq` SET `customer_id`=... 阅读全文