You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set db = server.CreateObject ("SQLComandos.Comandos")
universidades = Request.Form("seleccion")
sql = "delete from universidad where id in (" & universidades & ") and id not in ( select distinct(universidad) from usuario )"
resultado = db.SQLOtras ("DBBAECYS", sql)
sql = "select distinct(u.universidad),p.nombre pais, uv.nombre from usuario u,universidad uv, pais p where u.universidad in (" & universidades & ") and uv.id = u.universidad and uv.pais = p.id"
set rs = db.sqlselect("DBBAECYS", sql)
if not rs.EOF then
while rs.EOF <> true
%>
<h2>La universidad "<%= rs("nombre") %>" de <%=rs("pais")%> no fue eliminada por que esta asignada a un usuario </h2><br>