top | item 28555319

(no title)

theplague42 | 4 years ago

It's using an implied cross join so each image is deployed onto a t2.micro

discuss

order

Dizcorded|4 years ago

Ahh, gotcha. I appreciate the response there as I wasn't aware of that notation and even then I can't think of any time I've used a cross join. Not sure which syntax I would use personally.

disgruntledphd2|4 years ago

> I've used a cross join

They're good for getting rates on small datasets. think (select grouper, count(1) from data) cross join select count(1) from data) I think I've mostly used them in interviews, tbh.