I have these tables
Student
1. Id
2. Nombre
3. Apellido
4. documento --es numerico
5. Id_escuela --numerico pero enlaza a Escuela
School
1. Id_escuela ---enlace
2. Nombre_escuela
Here my question, I want that in a single table you can only see this data
1. Nombre
2. Apellido
3. Nombre_escuela
How can I do it ?, I'm new to SQL and I need it to be able to show it in a visual basic datagridview, thank you very much in advance.