Search Results

1
vote

SQL expression to remove duplicates from a calculation

To get the average of the minimum values for each incnum, you could write this SQL select avg(min_time) as avg_time from (select incnum, min(col2) as min_time from inc group by …
11
votes

What are the uses for Cross Join?

If you have a "grid" that you want to populate completely, like size and color information for a particular article of clothing: select size, color from sizes CROSS JOI …
2
votes

SQL Server: Make all UPPER case to Proper Case/Title Case

Just keep in mind that properly changing upper-case text to proper-case text may require manual corrections in some, well, cases. With names, for example: I do not appreciate applications that miss …
0
votes

Does MS access(2003) have anything comparable to Stored procedure. I want to run a complex query in MS acceess

Well, you can use a Recordset object to loop through your query in VBA, concatenating field values based on whatever criteria you need. If you want to return the results as strings, you'll …
0
votes

CREATE TRIGGER is taking more than 30 minutes on SQL Server 2005

That's odd. An AFTER UPDATE trigger shouldn't need to check existing rows in the table. I suppose it's possible that you aren't able to obtain a lock on the table to add the trigger. …
6
votes

Insert default value when parameter is null

Try an if statement ... if @value is null insert into t (value) values (default) else insert into t (value) values (@value) …
0
votes

Online reference listing all standard SQL keywords?

You can find Oracle 10g reserved words here. The …
5
votes

Multiple NOT distinct

Another way of returning the results you want would be this: select * from my_table where B in (select B from my_table group by B having count(*) > 1) …