0
我用簡單的選擇查詢:如何在PostgreSQL中選擇查詢後設置一個值?
SELECT
transactiontype
FROM
posfeed
LIMIT 100;
我結果,我有一些行空值。 我需要在某些字段的SELECT查詢結果中設置一些默認值。
喜歡的東西:
if (transactiontype = '') {
//SET SOME VALUE HERE
} else {
//LEAVE
}
這些值是否爲空值字符串? –
空字符串.. –
然後,您可以使用'SELECT CASE WHEN transactiontype =''THEN'some_default_value'ELSE transactiontype END AS transactiontype ...' –