5
votes
1
vote
How to select all users who made more than 10 submissions.
SELECT
username
FROM
usertable
JOIN submissions
ON usertable.userid = submissions.userid
GROUP BY
usertable.username
HAVING
Count(*) > 1
…
0
votes
can I configure hibernate properties to connect without using an instance name to sql server 2005?
Yes, you can. You set it up as you normally would in the connection string:
Server=(local);initial catalog=MyDataBase;Integrated Security=SSPI
…
17
votes
how to read the last row with SQL Server
If you're using MS SQL, you can try:
SELECT TOP 1 * FROM table_Name ORDER BY unique_column DESC
…
