Hi, I have these 2 table. I need a query that will result BDStudenti.nume, Note.nota if i have BDStudenti.grupa and Note.ide
BDStudenti
nrmatricol int(5) PK
cnp bigint(20)
nume varchar(50)
grupa int(5)
Note
idn int(5) PK
nrmatricol int(5)
ide int(5)
nota int(5)
I tried this but it does not work
Code:
SELECT Note.nota, BDStudenti.nume from Note, BDStudenti
WHERE BDStudenti.grupa =501 and Note.ide =1
thanks for the help