我正在使用 fetchall_hashref 从 mysql 数据库中获取满足条件的数据。检索到的数据将存储在哈希中,然后由 javascript 函数使用。
我想检索 3 列的所有行并将其存储在哈希中,但无法做到这一点。
表结构..
表数据..
正在使用的代码..
#!/usr/bin/perl -w
#print "Content-type: text/html\n\n";
use DBI;
use CGI;
use strict;
use warnings;
use diagnostics;
use Data::Dumper;
use CGI::Carp qw (fatalsToBrowser);
my $q = CGI->new;
print $q->header;
my $dsn = "DBI:mysql:Demo:localhost"; # Data source name
my $username = "mint"; # User name
my $password = "MINT123"; # Password
my $dbh;
my $sth;
my $b;
my $c;
# Database and statement handles
$dbh = DBI->connect($dsn, $username, $password);
my $hash = $dbh->selectall_hashref("SELECT `desc`,date1,riskval from FIR2 where date1 between date_sub(now(),INTERVAL 1 WEEK) and now() order by date1", 'riskval');
print Dumper($hash);
$b=join(",",$hash);
delete $_->{riskval} for values %$hash;
$dbh->disconnect();
我在浏览器中得到的输出......
腻子中的输出..
如您所见,我想打印“riskval”为空的行,“riskval”的值在 2 个位置为 5,但只打印了 1 行。
在我用 selectall_arrayref 替换 selectall_hashref 后,我在 putty 中收到以下错误消息。
请帮忙..