can you assign an alias to the from clause? like:
select a - b "Markup" from retail a, cost b;
EDIT: sorry i typed that out a bit too quick and tried to simplify the question to the point where it didnt make any sense
What im actually trying to do is use aliases to compare the months between two publishing dates in the same table. Here's what i found works:
select distinct to_char(months_between((select distinct pubdate
from books3
where pubid = 2),
(select distinct pubdate
from books3
where pubid = 4)), '99.99') "Answer"
from books3
i wanted it to looks something like this:
select distinct months_between(a,b)
from (select distinct pubdate
from books3
where pubid = 2 as a),
(select distinct pubdate
from books3
where pubid = 4 as b)
but that isn't working
Yes, Oracle supports table aliases. It supports
AS
in theSELECT
list but not in theFROM
list:Most databases support omitting the
AS
keyword.That said, table aliases aren't column aliases -- you still need to reference a specific column in the respective table in the SELECT clause, like you see in my update of your example. I also added the
WHERE
criteria so the query wouldn't be returning a Cartesian product.Table aliases are sometimes required for derived tables/inline views (AKA subquery, though I find the terminology very vague):
Here's your query:
Your problem was you were putting the table alias inside the derived table, when it needs to be outside the brackets/parenthesis:
The reason you need the distinct is because of the Cartesian product.
The closest to what you have would be to move the
AS alias
out of the subqueryBut still, the query doesn't make much sense. If there are 2 records for
pubid=2
and 3 forpubid=4
, you get 6 rows in the output....I suspect you actually have some grouping going on, so this will compare pubid=2 and pubid=4 entries at a per-bookid level.