Search Results

1
vote
4answers
176 views

SQL Query for Summary By Instances Per Day

I've got a table in a mysql database that contains monetary transactions. Let's say the tabled is called transactions: id int, to_user int, from_user int, created datetime …
1
vote
2answers
139 views

Querying for Consecutive Rows with Certain Characteristics

I've got a table with the following columns: id int(10) user int(10) winner int(10) profit double created datetime The winner column can be either 0 or 1. I'd lik …
0
votes
2answers
42 views

SQL Query to Find Largest “Drawdown” in Table of Financial Transactions

I have a table with the following columns: id int(10) winner int(10) profit double created datetime I'm trying to create a query that returns the largest drawdown, …
0
votes
2answers
33 views

SQL Query to Show If Two Users in Same Group

I've got a database with 3 tables: users, groups, and groupmembers. users: id int username varchar(50) groups: id int name varchar(50) groupmembers: id int groupid int user int …