Tagged Questions

0
votes
2answers
11 views

Combine two small queries (that group by different values) into one query

Please take a look at the following table (called response). It shows what response a respondent has given to a question and answer. questionid answerid respondentid 1 …
2
votes
4answers
78 views

SQL Query problem

Consider two table.Employee and Project.Employee table has fields like eid,ename.Project table has fields like pid,pname.Now,since an employee can work on many projects and a proje …
0
votes
5answers
55 views

How to implement a “hasChildren” SELECT statement in SQL?

Let's say I have the following table: ID | parentID | MoreStuff 1 | -1 | ... 2 | 1 | ... 3 | 1 | ... 4 | 2 | ... 5 | 1 | ... How can …
0
votes
5answers
38 views

Weird SQL Server behavior

What´s the name of the behavior in the statement below? Create table dbo.Foo(name varchar(10)) insert dbo.Foo (name) select 'Weird' union select 'SQL' union select 'Server' unio …
0
votes
5answers
23 views

PL/SQL…if inside a select?

I'm pretty new when it comes to PL/SQL, and I have to modify someone else's stored procedure. Is it possible to add an if statement in the middle of a select? The procedure I hav …
1
vote
3answers
35 views

SQL order by a column from another table

Hello, I have 3 tables: people, groups and memberships. Memberships is a join table between people and groups, and have 3 columns: personId, groupId and description (text). I wan …
0
votes
1answer
27 views

Database patterns for partitioning large hierarchical datasets

Are there any best-pratices/patterns or general advice for partitioning large amounts of hierarchical data? Think of, say, a database of all the people in a given country and trac …
0
votes
3answers
24 views

Update table SQL query help

I have a database student(attribute - studentid). studentid is a varchar. Now I want to add 'P' at the end of all studentids. 12 -> 12P 234 -> 234P What will be the sql query fo …
1
vote
9answers
58 views

Compare inner join and outer join SQL statements

What is the difference between an inner join and outer join? What's the precise meaning of these two kinds of joins?
0
votes
2answers
31 views

Using EXISTS with MySQL

I have this simple query that works on all other database systems, but fails with MySQL: UPDATE points p SET p.userid = 5224 WHERE p.userid = 2532 AND NOT EXISTS ( SELECT 1 …
2
votes
4answers
36 views

What is the easiest way to see which join is responsible for an entry not being shown

I have this db with lots of tables and frequently I have to answer the question: Why is entry x not being shown? Often I have an idea which entry might be the reason, but more oft …
0
votes
1answer
41 views

… where count(col) > 1 …

I have a table like this: +-----+-----+-------+ | id | fk | value | +-----+-----+-------+ | 0 | 1 | peter | | 1 | 1 | josh | | 3 | 2 | marc | | ... | ... | ... | …
2
votes
2answers
56 views

Need some help with a SQL Query

Hi all, I need some help with a SQL query for SQL Server 2005. Here is an example of the data in the table to be queried: Id PersonId PayrollNum ContractId Payrol …
3
votes
7answers
76 views

Building SQL strings in Access/VBA

Occasionally, I have had to build a SQL string in VBA and execute it with Docmd.RunSql(). I have always built these strings by concatenating variables into the string, e.g: Dim my …
0
votes
1answer
14 views

Eval compare of two values to FALSE only when both not null and dont Match

Where clause: I should test column against value in Proc, but if at least one of them is null It should be TRUE as a result. And Only when BOTH NOT NULL (it's Integer values for ID …

1 2 3 4 5 846 next
15 30 50 per page