$number = 1;
do{
$list_name = "Unnamed list ".$number;
$list_name_exists = DB::select( name )->from( shoppinglists )->where( name , = , $list_name)->execute()->count(); // returns 1 or 0
$number++;
}while($list_name_exists == 0);
echo $list_name; // I want it here to output a name, that doesnt exists in the db.
上文试图做的是,将清单——姓名——定为在b中已经不存在的名字。
但这似乎并不可行,页数相当长。
如何做到这一点?