我正在尝试显示 MySQL 表中的所有记录。
我可以做select * from table
,但这不是我想做的。
我想做这样的事情
select app_id, app_name from app where app_sendto = '%'
我已经尝试了上述方法,但没有显示任何内容。
我想按如下方式运行上述查询
$get_app = "select app_id, app_name from app where app_sendto = ?";
$sth = $dbh->prepare($get_app);
$sth->execute('people') or die "Cannot execute sth: $DBI::errstr";
谁能帮我解决这个问题。