摘要:
必须先修改my.cnf 添加 skip-grant-tables 然后 执行 update mysql.user set authentication_string=password('123456') where user='root',最后重启MySQL.O了 阅读全文
摘要:
DELIMITER $$CREATE DEFINER=`root`@`192.168.2.254` PROCEDURE `pjzzspdz_fpmx_initdata12101245`()BEGIN#其中走完一次循环可产生15条数据,单天数据量40w 因此日期增量值为40w/15=26667 ,总的 阅读全文
摘要:
begindeclare i int; #定义i变量declare j int; #定义j变量declare k int; #定义k变量set i=1;set j=1;set k=1;while(i<3) do #对学号的循环 while(j<6) do #对课程号的循环 while(k<3) do 阅读全文
摘要:
#1.创建sequence表,公共的DROP TABLE IF EXISTS sequence; CREATE TABLE sequence ( name VARCHAR(30) NOT NULL, #序列名 current_value INT NOT NULL, #当前值 increment IN 阅读全文