L
Lily
I have a table with 2 fields: Zipcode and Dollar. I want to create a new
field "Relativity" that equals to Dollar/Dollar(when Zipcode=44444).
how do I write it in SQL?
Select ZipCode, Dollar, Relativity as Dollar/(Dollar When Zipcode=44444)
from table1;
Thanks,
Lily
field "Relativity" that equals to Dollar/Dollar(when Zipcode=44444).
how do I write it in SQL?
Select ZipCode, Dollar, Relativity as Dollar/(Dollar When Zipcode=44444)
from table1;
Thanks,
Lily