M
Martin Rothschink
Hi,
to concat two columns in Access I can use + or &. If I use + the NULL
pushes through, so I want to use &.
Example: SELECT Firstname & ' ' & Lastname AS Name ...
Problem: The OleDbCommand object doesn't accepts & in a SQL statement,
only + is allowed.
But now I get empty data if Firstname is NULL.
Does anybody know the trick?
Regards
Martin
to concat two columns in Access I can use + or &. If I use + the NULL
pushes through, so I want to use &.
Example: SELECT Firstname & ' ' & Lastname AS Name ...
Problem: The OleDbCommand object doesn't accepts & in a SQL statement,
only + is allowed.
But now I get empty data if Firstname is NULL.
Does anybody know the trick?
Regards
Martin