Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Visual Studio 报表查看器并显示布尔类型列。它为每一行显示真或假。我想显示 "Approved" 而不是 true。我怎样才能做到这一点?
您必须更改数据库查询和使用IF-ELSE条件,例如
IF-ELSE
select case when columnname = 'true' Then 'Approved' else 'Rejected' end as Status from tablename
您必须使您的数据库查询类似。
希望您理解并为您工作。