Is their a reason I cannot do
Select Firstname + Lastname
from Person
When using SQLite? does it not support this joining of columns... this is what i need for a view i am creating for a android project
Is their a reason I cannot do
Select Firstname + Lastname
from Person
When using SQLite? does it not support this joining of columns... this is what i need for a view i am creating for a android project
Select Firstname || Lastname from Person
is what you are looking for ...