Im using Sqlite3 and mysql database for one application.
I wrote a query to concat two columns of a table as
select CONCAT(firstname,' ',lastname)as fullname from customers;
in sqlite i can write it as
select firstname||' '||lastname as fullname from customers;
but i want it to work in both the database like Sqlite and Mysql with one query.