@QuietStorm not sure if you're into FPS games, but I've sunken obscene amounts of time into Call of Duty Mobile and haven't paid a dime. It's free to play, but they advertise micro transactions to you, which are easily ignored. And I've played it no problem on a $50 Moto e6.
JustinFTL
joined 1 year ago
@TauZero you would use a join so that one call would fetch all comment rows for that post:
`SELECT p.post_id, p.title, p.description, c.text
FROM posts p JOIN comments c ON p.post_id = c.post_id
WHERE p.post_id = 79`
This would return a list of all comments for post 79, along with the post id, title, and description also in every row. This isn't a perfect example of optimized SQL, and I have no idea if these are the correct table and field names, as I didn't look them up. But it's a simple example of joins.
@odama626 when my brain goes in auto-mode, mine ends up like:
`// opens dialog window
openDialogWindow(){
// set dialog config
const config = new DialogWindowConfig({...});
// open window
dialogWindow.Open(config);
}`