資料庫中構造多組測試資料

2021-10-08 06:07:34 字數 1396 閱讀 9218

步驟:

1、明確對應資料庫名

2、明確該功能對應的表名

3、明確資料庫中的字段規則:是否必填,字段長度,是否加密

4、構造正確的insert命令進行插入實驗

5、在sql命令中構造迴圈結構(儲存過程)

以建立使用者為例:

1、插入單行資料:

insert

into iwebshop_user(username,password)

values

('dabai'

,'111111'

)

執行結果:

2、通過儲存過程建立多條資料

create

procedure adduser(

)begin

#設定迴圈變數

declare i int

;#迴圈變數賦值

set i=1;

while i<=3do

insert

into iwebshop_user(username,password)

values

(concat(

'dabai'

,i),

'111111');

set i=i+1;

endwhile

;end

儲存儲存過程後,執行這個儲存過程

執行結果

3、 修改常量為變數

create

procedure adduser1(num int

)begin

declare i int

;set i=1;

while i<=num do

insert

into iwebshop_user(username,password)

values

(concat(

'dabai'

,i),

'111111');

set i=i+1;

endwhile

;end

執行的時候輸入想要的數量就好啦

如何輸入多組測試資料

problem description 輸入三個字元後,按各字元的ascii碼從小到大的順序輸出這三個字元。input 輸入資料有多組,每組佔一行,有三個字元組成,之間無空格。output 對於每組輸入資料,輸出一行,字元中間用乙個空格分開。sample input qwe asdzxc sampl...

構造測試資料 對比測試資料

正確 include using namespace std typedef long long ll const int max n 1e6 10 intmain return0 author max n date 2019 10 04 15.03.21 description 正確 錯誤 inc...

測試資料庫腳步

執行 sql,以資料庫管理員身份登入,下面給出測試資料庫的指令碼 需要鍛鍊動手能力的朋友,可以執行它!create database teaching gouse teaching gocreate table student sno char 10 primary key,sname char 8...