You can also use cross apply to go off and get data from somewhere else while youre inside your query and using something from your query. Select tt.* from thisTable tt Cross apply( Select ot.* from myOtherTable ot Where ot.col1 = '4' ) myResult Where tt.col2 = myResult.col2 Just random untested code but can be useful
You can also use cross apply to go off and get data from somewhere else while youre inside your query and using something from your query.
Select tt.* from thisTable tt
Cross apply(
Select ot.* from myOtherTable ot
Where ot.col1 = '4'
) myResult
Where tt.col2 = myResult.col2
Just random untested code but can be useful
Left ear: OK
Right ear: -
You'd better record mono rather than half stereo.
who cares?
@@bobhoover1066 i do. it bothers
This is really cool! I wish it worked for window functions though. But this is definitely appreciated and useful.
great trick!
Great video!
Cant see. You need to zoom in
You ended up with more code in the end
Yeah, really cool. Does not explain anything.