Posts by Pedro Henrique • 13 points
1 post
-
1
votes1
answer52
viewsQ: What I need is to take the primary key from the Phone table and insert it into the FK of the Client table. How do I?
CREATE TABLE Cliente ( id_Cliente INTEGER PRIMARY KEY IDENTITY(1,1), nome_Cliente VARCHAR(50), fk_ID_Telefone INTEGER ) CREATE TABLE Telefone ( id_Telefone INTEGER PRIMARY KEY IDENTITY(1,1),…