For some reason, I cannot combine the firstname and lastname from a sql table.
Here is what I have tried:
SELECT firstname, lastname, firstname + ' ' + lastname as fullname from students;
For some reason it is showing in the result "0" for each row under fullname, however the firstname and lastname columns are populated as normal.
Please help. ***Please note, I do not want to use CONCAT() function
Screenshot here: table
Thanks in advance