mike509123
MIS
Hi,
I have the following query:
select first_name,last_name, address
from address_book
which returns the following table
john smith 393 Jones RD
bill smith 345 Jenkins RD
I would like to modify the query so the resulting query returns a table that looks like this
john smith 393 Jones RD 0
bill smith 345 Jenkins RD 0
In other words I want to modify the query so that it returns a table with four columns, and the forth column is always 0.
Thanks.
I have the following query:
select first_name,last_name, address
from address_book
which returns the following table
john smith 393 Jones RD
bill smith 345 Jenkins RD
I would like to modify the query so the resulting query returns a table that looks like this
john smith 393 Jones RD 0
bill smith 345 Jenkins RD 0
In other words I want to modify the query so that it returns a table with four columns, and the forth column is always 0.
Thanks.