How To Use DBIx::SQLEngine To Get A Count

1 2 3 4 5 6 7 |
my $value = $dbh->fetch_one_value( 'table' => 'users', 'columns' => 'COUNT(*)', 'where' => { 'active' => 1, }, ); |
![]() |
1 2 3 4 5 6 7 |
my $value = $dbh->fetch_one_value( 'table' => 'users', 'columns' => 'COUNT(*)', 'where' => { 'active' => 1, }, ); |
Leave Your Comment
All fields marked with "*" are required.