Tagged Questions
1
vote
2answers
48 views
How to implement mySQL self-relationship?
How can I create a Message table such as this in mySQL where it stores messages and their responses?
1
vote
3answers
91 views
sql oracle duplicates
Here's my ORACLE table
HAVE******
asset_no, sub, add_dtm
11510 FOX HOLLOW 8/1/2008 8:00:01 AM
11510 FOX HOLLOW 11/1/2011 1:30:01 PM
11510 FOX HOLLOW 10/1/2012 8:00:01 AM
...
0
votes
1answer
95 views
multiple self join replacement
Want some replacement for multiple self join on a table. what is the maximum limit of self join on a table in SQL
I have a table table_1 with columns as:
uid number(10),
a_name nvarchar(20),
aaId ...
0
votes
4answers
142 views
How to self join this SQL
I have one table in my Database that has column names: buildNumber, result, versionStatus. Now in my SQL statement I want to display the 'buildNumber' where the 'versionStatus' is old and the 'result' ...
1
vote
6answers
292 views
How to get this logic in SQL Query?
I have two tables to track user activity:
I need to write a SQL query to get data in below format
:
UserId|UserRole|LoginTime|LogOutTime
Note : LoginTime/LogOutTime is Activity_Time_Stamp in ...
0
votes
1answer
671 views
How to do self join on min/max
I am new to sql queries.
Table is defined as
( symbol varchar,
high int,
low int,
today date,
Primary key (symbol, today)
)
I need to find for each symbol in a given date range, ...
1
vote
2answers
357 views
SQL Outer Join on multiple summed columns in same table
I am working with a SQL Library (Programming library, ANSI SQL Compliant, called ABS Database,(http://www.componentace.com/help/absdb_manual/absdbmanual_content.htm). It supports the various joins, ...
1
vote
2answers
164 views
How do you resolve ambiguous aliases in MySQL to the current table's definitions
I was wondering if MySQL has some kind of default alias for the current table you are building (like 'self' in SmallTalk or 'this' in Java). For instance:
SELECT
SUM(revenue) AS revenue,
SUM(units) ...
0
votes
2answers
760 views
Self Join SQL Query
a few days ago I asked for a solution to a SQL query i needed to work out, my data looks like:
meta_id post_id meta_key meta_value
269 4 _apais USA
270 4 _aciudad ...
1
vote
2answers
41 views
Need help designing a proper sql query
I have this table:
DebitDate | DebitTypeID | DebitPrice | DebitQuantity
----------------------------------------------------
40577 1 50 3
40577 1 100 ...
5
votes
2answers
174 views
How to count similar interests in MySQL
I have 2 tables, 'interests' and 'users_interests'.
'users_interests' just has userid and interestid fields.
'interests just has an id and a name.
I simply need to find userid's who have more than ...