Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

MySQL में लूप उदाहरण के लिए

drop table if exists foo;
create table foo
(
id int unsigned not null auto_increment primary key,
val smallint unsigned not null default 0
)
engine=innodb;

drop procedure if exists load_foo_test_data;

delimiter #
create procedure load_foo_test_data()
begin

declare v_max int unsigned default 1000;
declare v_counter int unsigned default 0;

  truncate table foo;
  start transaction;
  while v_counter < v_max do
    insert into foo (val) values ( floor(0 + (rand() * 65535)) );
    set v_counter=v_counter+1;
  end while;
  commit;
end #

delimiter ;

call load_foo_test_data();

select * from foo order by id;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL में अल्पविराम से अलग की गई सूची के रूप में क्वेरी परिणाम कैसे लौटाएं?

  2. MySQL, एक क्वेरी के साथ कई टेबल अपडेट करें

  3. एक MySQL क्वेरी को CSV में बदलने के लिए PHP कोड

  4. JSON_REMOVE () - MySQL में JSON दस्तावेज़ से डेटा निकालें

  5. MySQL:उन पंक्तियों का चयन करना जहाँ एक कॉलम रिक्त है