以下是我的哈希。我不想在值部分重复键(city
& country
)。
%sql_cache = (
city => "select * from city where id=106",
country => "select * from country where code='IND'",
);
在 Perl 中是否有任何内置变量可以实现这一点?
以下是我的哈希。我不想在值部分重复键(city
& country
)。
%sql_cache = (
city => "select * from city where id=106",
country => "select * from country where code='IND'",
);
在 Perl 中是否有任何内置变量可以实现这一点?