Hi,
Is the following possible:
value_y doesn't exist in the table thus logically speaking the query would only return the results for value_x and value_z.
Now my questions is, can I also retrieve a blank row for value_y via a select statement?
The result would be like:
row value_x
row value_y (all null values)
row value_z
With stored procedures/functions this is easy to but unfortunately I can't make use of these.
Any idea's.
Tx,
Tijs
Is the following possible:
Code:
select *
from table_x
where field_x in (value_x, value_y, value_z)
value_y doesn't exist in the table thus logically speaking the query would only return the results for value_x and value_z.
Now my questions is, can I also retrieve a blank row for value_y via a select statement?
The result would be like:
row value_x
row value_y (all null values)
row value_z
With stored procedures/functions this is easy to but unfortunately I can't make use of these.
Any idea's.
Tx,
Tijs