Tagged Questions
0
votes
2answers
31 views
Composite primary key limit?
Is it OK if I create a composite primary key from 4 columns? Like:
PRIMARY KEY(name, slug, type, parent)
So there should not be more than one row with the same name, slug, type and parent. Are ...
-1
votes
1answer
33 views
Make SQL queries composite? [closed]
Lets I have a site that list restaurant reviews. When I click a restaurant I want to show the 5 top or most recent reviews. No problem.
Now lets say I want to show all restaurants in a city and their ...
1
vote
1answer
63 views
Oracle: Make a composite Key containing three Foregin keys
This is my code:
create table orderline
(
Order_No number(4) constraint orderno_fk references order_detail(Order_No),
Product_Code varchar2(6) constraint productcode2_fk references ...
1
vote
4answers
170 views
How to get max of composite data in SQL?
SELECT "Name""Month","Year","Value"
from Table
WHERE
"Name" LIKE '%JERRY%'
AND "Year" =
(SELECT MAX("Year") FROM Table where "Name" LIKE '%JERRY%')
AND "Month"=
(SELECT MAX("Month") ...
1
vote
2answers
72 views
How to find max from a composite set of rows?
I have a table such as :
Year | Month
------------
2011 10
2011 11
2012 5
2012 6
The query should return the latest "Month" for the latest "year".
Currently I'm doing ...
0
votes
2answers
358 views
SQL Query to find record where one of the composite primary keys should be Max against other composite primary key
Following is my table:
PatientID|VisitID|Date|Accident|Diagnosis|Doctor
1 | 1 | | | |
1 | 2 | | | |
1 | 3 | | | ...
1
vote
2answers
6k views
How to create composite key?
I am new to MySQL WB so I can create foreign key by adding relation between to dependen tables.
But how to create a composite key?
For example I have this table sql
CREATE TABLE TASKS
(
TEST_ID ...
1
vote
3answers
361 views
Help required with a complex self join sql query
myTable is having composite key formed of columns A and B (total columns A, B, C, D, E).
I want to exclude/ignore records where value of D (say order number) is same and E (say decision) is Y in one ...
3
votes
1answer
701 views
Linq self join composite key
please somebody could help me with this one.
I have a table that needs to be joined to itself. The table contains a composite key. So far the following SQL statement works perferct.
select * from ...
1
vote
1answer
837 views
IGNORE_DUP_KEY in Sql Server 2000 with composite primary key
I'm trying to create a table in SQL Server 2000, that has a composite primary key with IGNORE_DUP_KEY set to ON.
I've tried looking for this option in SQL Server Management Studio Express but I ...
5
votes
6answers
589 views
MySQL composite indexes and operator BETWEEN
I have a question about this query:
SELECT *
FROM runs
WHERE (NOW() BETWEEN began_at
AND finished_at)
Do you think it makes sense to create composite index for began_at and ...
3
votes
2answers
430 views
Postgresql function returns composite - how do I access composite values as separate columns?
I have a Postgresql function which returns a composite type defined as (location TEXT, id INT). When I run "SELECT myfunc()", My output is a single column of type text, formatted as:
("locationdata", ...
0
votes
2answers
79 views
Is it possible to have multiple composite (aka “many-to-many”, ManyToMany) joins that don't make the result set huge
Situation:
Table book is associated with one or more authors via the _author_book table. It is also associated with one or more genres via the _book_genre table.
When selecting all the books, and ...
4
votes
4answers
3k views
Composite Primary keys and Foreign key constraint error
I have an SQL table defined as below:
CREATE TABLE [TestComposite] (
ID int,
SiteUrl nvarchar(255),
Name nvarchar(max) NOT NULL,
ParentID int NULL,
PRIMARY KEY (ID, ...
1
vote
3answers
3k views
How to create Composite Key and how to refer it in other table as a foreign key
I have a table following table
create table tblcountry (
unqid uniqueidentifier
name varchar(100)
isremoved bit
)
I want to create primary key on basis of unqid + isremoved and in which ...
14
votes
8answers
5k views
Composite primary key
I am working on the design of a database that will be used to store data that originates from a number of different sources. The instances I am storing are assigned unique IDs by the original sources. ...
13
votes
5answers
7k views
How do composite indexes work?
I've created composite indexes (indices for you mathematical folk) on tables before with an assumption of how they worked. I was just curious if my assumption is correct or not.
I assume that when ...