Most voted "sql-server" questions
SQL Server is a relational database management system from Microsoft. Use this tag for all SQL Server editions, including Compact, Express, Azure, Fasttrack and PDW.
Learn more…2,752 questions
Sort by count of
-
-5
votes1
answer37
viewsWhat are the means of connections a C# application can have with SQL Server?
I would like to know what types of connections a given application developed in C# can have with the SQL Server database. Among all, which is the most efficient?
-
-6
votes2
answers43
viewsQuery to know which books students do not have, in SQL
Good, I have the following tables Livro: ID_Livro PK Nome Aluno: ID_Aluno PK Nome RegistoLivroAluno: ID_Registo PK ID_Aluno (chave extrangeira de Aluno) ID_Livro (chave extrangeira de Livro) ) I…