I want to implement the attribute "name". this attribute consists of the 2 other attributes "firstname" and "lastname".
my code:
firstname VARCHAR (30),
lastname VARCHAR (30),
name VARCHAR (firstname, lastname)
but i get the error that the syntax is not correct. so what is the right way to do it?