2
votes
How do you count the rows in a SQL query which alredy used count, group by, and having before?
Nested queries:
select count(*) from
(select userId
from submission
group by userId
having count(submissionGuid) > 10) n
Edited to incorporate mbr …
1
vote
SQL: get DATEDIFF to not return negative values
You need to be consistent with your calls to datediff(). They should all use the same datepart argument.
See M …
5
votes
Readable SQL aliases
The whole point of an alias is to shorten the name so you don't need verbosity.
It only needs to be unique within a given query, so there's no need for a scheme for naming them.
Ed …
15
votes
Oracle - Select where field has lowercase characters
How about this:
select id, first, last from mytable
where first != upper(first) or last != upper(last);
…
1
vote
What is the best way to do a wildcard search in sql server 2005?
What your doing already is about the best you can do.
One optimization you might try is to ensure there's an index on the columns you're allowing this on. SQL Server will still need to do a …
0
votes
SQL string formatter
Not that I recommend spending the (relatively large) money on it for just this purpose, but Toad has a feature built in that does …
1
vote
Selecting records in SQL based on another table’s contents
You're looking to JOIN tables.
Assuming the id and userID columns have the same meaning, it's like this:
select u.name
from users u inner join properties p
on u …
