I need to add a dummy column to a simple select statement in certain circumstances:
Select Id, EndOfcol default '~' from Main where id > 40
|
I need to add a dummy column to a simple select statement in certain circumstances:
|
||||
|
|
|
Yes, it's actually a constant value.
|
|||||
|
|
Sometimes you may want to cast the datatype of the constant especially if you plan to add other data to it later:
This is especially useful if you want to add a NULL column and then later figure out the information that goes into it as NULL will be cast as int automatically.
|
|||
|
|
|
Yes, it is possible it can be constant or can be conditional
|
|||
|
|