Is it possible to select 2 columns in just one?
Example:
select something + somethingElse as onlyOneColumn from someTable
|
Is it possible to select 2 columns in just one? Example: select something + somethingElse as onlyOneColumn from someTable |
|||
|
|
|
Yes, just like you did. Why ask here and not ask the database, you would have gotten the right answer. What happens is you ask for an expression. A very simple expression is just a column name, a more complicated expression can have forumales etc in it. GJ |
|||
|
|
|
||||
|
|
|
Yes it's possible, as long as the datatypes are compatible. If they aren't, use a CONVERT() or CAST()
|
|||
|
|
|
Yes,
will result in data set like:
|
|||
|
|
|
The Here is an example:
For this example, if Hope this helps! |
||||
|
|
|
Yes, you can combine columns easily enough such as concatenating character data:
or adding (for example) numeric data:
In both those cases, you end up with a single column |
|||
|
|
|
Your syntax should work, maybe add a space between the colums like
|
|||
|
|