Alessio Forconi <[EMAIL PROTECTED]>
wrote:
> What I would like to achieve is the same as writing in SQL Server
>
> SELECT IDStudent, Name + " - " + Surname AS Nominative FROM Students

SELECT IDStudent, Name || ' - ' || Surname AS Nominative FROM Students

Igor Tandetnik 



_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to