Viewing 15 posts - 46 through 60 (of 1,390 total)
If any consecutive click within 2 seconds is sufficient then the query posted looks ok 🙂
November 1, 2024 at 11:35 am
Given the following table and query, this will return any records(based on message_id) that have timestamps within 2 seconds. This works and gives me the correct output.
The query...
November 1, 2024 at 11:11 am
Instead of typing up an example I pasted your code next to a table from another topic and then did cut/paste/replace the column names. "...ts.PKey is not column of subquery"...
October 30, 2024 at 6:03 pm
your are right: using a qualifier results in an error (unknown column):
update TempSel set WertA = 'TEST' where PKey in
(select Q1.PKey from (select PKey as...
October 30, 2024 at 3:14 pm
Or what's the question? It seems the topic's scope has crept after solutions were posted
October 25, 2024 at 7:47 pm
... extract all numbers which follow a '#' and then create a new row for each.
So far I'm not seeing a solution for which each character returned is an...
October 23, 2024 at 9:12 pm
"This table does not have any index and tigers. It has only PK."
The FROM and WHERE clauses of the INSERT:
FROM [DLSTYTOTAL] STG Left Join [TOTAL_RAW] TGT ...
October 7, 2024 at 1:52 pm
You'll need some app / query logic to prevent it.
Or a TRIGGER. This is the sort of situation where one could be appropriate imo
October 2, 2024 at 8:23 pm
Yeah, it's not clear. The next sentence implies only 102 needs to be "printed" out. I'm picturing one of those giant dot matrix line printers that used to fill up...
September 29, 2024 at 7:44 pm
Hmmm... Phil's query returns 1 row (Rownr=7) for ItemId=102. The topic says: "If the status is not in this order for any item then we need to print such items." ...
September 29, 2024 at 3:36 pm
It's as popular as ever but I've always found JavaScript difficult to work with. With JavaScript it's like you're inventing everything whereas with SQL and other languages it seems more...
September 27, 2024 at 6:12 pm
If the ID is unique then yes DISTINCT would do nothing. I was sort of thinking right-to-left if there were duplicate properties there could also be duplicate ID's. No data...
September 25, 2024 at 7:58 pm
My guess is to copy Drew's query but with DISTINCT in the outer SELECT
September 25, 2024 at 3:11 pm
Begin tran of stp A
Stp B - Insert record in table 1 --> fetch cross DB data --> insert records in table 2 --> insert records in table 3...
September 11, 2024 at 4:04 pm
Viewing 15 posts - 46 through 60 (of 1,390 total)