Posts by PLegendary • 21 points
3 posts
-
-1
votes1
answer133
viewsQ: How to change the ip of Mongo for external access
Good currently I am using Mongo and React, and as usual the application works on 127.0.0.1 But now I also have an external access, so Ngo should also listen from another external ip. How do I make…
-
0
votes2
answers4117
viewsQ: SQL how do I enter into a table that has FK?
How do I make a insert into in a table where there is a FK? example this is my structure Pessoa ID (primary key) nome varchar(20) id_endereco int not null (foreign key)…
-
-4
votes1
answer82
viewsQ: SQL to create fk int in TABLE
Film COD (int, pk) name(varchar 20, not null) birth (datetime, not null) Obs(tinybit, not null) Obs2(int, fk, not null) I thought of something like create table filme ( COD int PRIMARY KEY…