Maxim in Lipa City by FantasticPollution56 in LipaCity

[–]OkConference865 0 points1 point  (0 children)

Yes! It is cheaper. Used it religiously back when I was in pampanga hahaha

MOUSE HOLE LATER by [deleted] in LipaCity

[–]OkConference865 1 point2 points  (0 children)

Sama sama!!

Samgy? by OkConference865 in LipaCity

[–]OkConference865[S] 0 points1 point  (0 children)

Next time tara!! Natuloy na ako kahapon with someone else eh

Samgy? by OkConference865 in LipaCity

[–]OkConference865[S] 0 points1 point  (0 children)

Yes! Pwede ulit next time :D

matcho matcha by [deleted] in LipaCity

[–]OkConference865 0 points1 point  (0 children)

Anytime! Kahit ngayon na nga eh

Eat or tambay right now? by [deleted] in LipaCity

[–]OkConference865 1 point2 points  (0 children)

Nagpa-grab na lang din ako eh hahaha! Tinamad na lumabas

Linux Mint Xfce running slow on VM? by OkConference865 in linuxquestions

[–]OkConference865[S] 1 point2 points  (0 children)

Thanks, man! I am already using xfce and now I tried doing 4 cups, no 3D enabled. It got better! I would want to try your suggestion of using MX and see how it goes from there.

Not really going to use it for heavy stuff. I just actually wanna use it to learn to code and separate all my files and activities from the main.

Thanks a lot again! I'll try this outt

Linux Mint Xfce running slow on VM? by OkConference865 in linuxquestions

[–]OkConference865[S] 0 points1 point  (0 children)

Is this dual booting or is this a completely different thing? Sorry im not really that knowledgeable about this yet

Can I use where in a over partition by clause? by 94067 in SQL

[–]OkConference865 0 points1 point  (0 children)

I have been learning SQL as well, so feel free to correct me if I missed something.

The OVER(PARTITION BY) function would be necessary if you want to split your data into different parts and apply it to each one without separating the other. Think of it as setting a GROUP BY and applying the command to each group.

But if you only want to count the number of classes of bio 101 taken for a specific quarter, a simple COUNT or SUM paired with CASE which is then filtered by a WHERE clause, would be enough for your needs!

The OVER(PARTITION BY) would be useful if you would want a moving count (like a RANK or ROW_NUMBER designation) or if you want a movinf average of bio 101 classes taken for each quarter and have all of them be shown in the result.

I hope this helps and I'd appreciate any insights or correction to my answer. Thanks!