azurelunatic: Vivid pink Alaskan wild rose. (Default)
Azure Jane Lunatic (Azz) 🌺 ([personal profile] azurelunatic) wrote2003-04-23 01:20 pm

GHA.

SQL. I can do *calculated* columns just fine, but I'm not sure how to handle this one that says to have it say "High-priced" in a column if the price is above 16000. GHA.

Help?

[identity profile] godai.livejournal.com 2003-04-25 10:21 am (UTC)(link)
create view accounts (title_id, advance, pricey descriptor)
as select titles.title_id, advance,
if price > 1600 then "High-priced" else ""
from titles, price



something like that.