Tagged Questions
The multiple-tables tag has no wiki summary.
7
votes
7answers
493 views
Should I use flat tables or a normalized database?
I have a web application that I am currently working on that uses a MySQL database for the back-end, and I need to know what is better for my situation before I continue any further.
Simply put, in ...
7
votes
2answers
2k views
Cakephp Auth with multiple “Users” tables
I would like to know how to deal with only ONE authentification process and "users" in multiple tables. I have 4 Users table: users, admins, artists, teamadmins which all have specific fields, but I ...
5
votes
1answer
3k views
ASP.NET MVC 3 multiple Models to single Form
I'm learning ASP.NET MVC 3 and trying to create a View with a single form which is made up of multiple Models linked together by a foreign key. The end goal is to have the single form insert into all ...
5
votes
2answers
137 views
Need help with PHP and MySQL
I have a table of songs, some songs are album song, and some are singles...
And I have a table of albums...
Example:
if the album ID is [null], it means the song is a single
Songs Table:
...
4
votes
2answers
202 views
Drop multiple tables in one shot in mysql
How to drop multiple tables from one single database at one command.
something like,
> use test;
> drop table a,b,c;
where a,b,c are the tables from database test.
4
votes
3answers
849 views
MySQL Keyword Search Across Multiple Tables
I have three tables in a MySQL database used in a music library application:
The Genre table has columns:
id
title (string)
The Album table has columns:
id
genre_id (foreign key to Genre.id)
...
3
votes
2answers
293 views
Oracle SQL Loader split data into diferent tables
I have a Data file that looks like this:
1 2 3 4 5 6
FirstName1 | LastName1 | 4224423 | Address1 | PhoneNumber1 | 1/1/1980
FirstName2 | ...
2
votes
1answer
76 views
MySQL Query Update Multiple Tables
I have a contact management system and an sql dump of my contacts with five or six columns of data in it I want to import into three specific tables. Wondering what the best way to go about this is. ...
2
votes
3answers
43 views
MySQL select DATETIME similar up to the minute
I have to comapre the results relative to the same time between two tables, but the time stamps differs of some second because of how they were recorded.
I would like to obtain a result like in ...
2
votes
2answers
57 views
Left Join 2 tables on 1 table
It must be pretty easy, but i can't think of any solution nor can I find an answer somewhere...
I got the table 'users'
and one table 'blogs' (user_id, blogpost)
and one table 'messages' (user_id, ...
2
votes
2answers
123 views
SQL: Replace part of a column on multiple rows based on second table
I have a table (pages) that holds properties for web pages, including a column for the page content itself, an NVARCHAR(MAX) column.
Within that column, I need to find and replace a bunch of text ...
2
votes
4answers
108 views
Multiple oracle queries problem
I'm trying to run a query from a .NET page but I seem to having some problems with having multiple queries.
My query is similar to this
SELECT * FROM table1; SELECT * from table2
But i seem to get ...
2
votes
2answers
66 views
Is many tables an efficient database design for my purposes?
I need to create a database to store details about what regions game characters have been in and how they got there.
I am planning to store the character UUID as a binary(16) index, the region name as ...
2
votes
1answer
202 views
Autocomplete from multiple tables
I'm wondering what is the most efficient way to obtain autocomplete results from multiple tables?
The caveat being; I want to be able to identify from what table the records are coming.
For example, ...
2
votes
1answer
631 views
Delete records from multiple tables in Access 2007
Using the following data, I am attempting to delete matching records from both tables.
Fruits
ID Value
1 Apple
2 Pear
3 Banana
4 Grape
Animals
ID Value
1 Bear
2 Monkey
3 Apple
4 ...
2
votes
4answers
165 views
mysql multiple tables vs 1 table
Im making a simple score keeping system and each user can have stats for many different games
But i don't know if each user should have his own score table or have one big table containing all the ...
2
votes
4answers
106 views
Listing data from mysql tables
recipe_category
cid | category
1 | desserts
2 | cakes
3 | biscuits
recipe_name
id | recipe_name | cid | iid
1 | black forest cake | 1,2 | 1,2,3,4
2 | angel cake | 2 | 1,2,4
...
2
votes
1answer
302 views
mysql pagination with multiple tables
I have 2 two tables:
organisations (id, name)
organisationsmeta (id, orgId, metaKey, metaValue)
Each organisation can have multiple associated meta rows. I'm using a Left Join right now since there ...
2
votes
3answers
755 views
Auto increment over multiple identity columns in MS SQL 2005 or 2008
I want to have two different tables in MS SQL, for example users and groups, both with identity column. It is possible to create auto increment over two identity columns? I want to have third table ...
2
votes
1answer
1k views
Postgres full text search across multiple related tables
This may be a very simplistic question, so apologies in advance, but I am very new to database usage.
I'd like to have Postgres run its full text search across multiple joined tables. Imagine ...
2
votes
2answers
236 views
How can I have two columns in one table point to the same column in another with ActiveRecord?
I run the risk of palm-to-forehead here, but I can't quite figure out how to do this with Rails' ActiveRecord sugar.
I have a tickets table that has two columns (submitter_id and assignee_id) that ...
2
votes
2answers
2k views
How do I use full text search accross multiple tables, SQL Server 2005
I have a full text catalog with two tables in it.
tableA has 4 columns (a1, a2, a3, a4) of wich 3 are indexed in the catalog, a2,a3,a4.
a1 is the primary key.
tableB has 3 columns (b1, b2, b3, b4), ...
1
vote
1answer
41 views
Multiple keywords, multiple tables. How should my SQL look like? (screenshot attached)
I have these tables in my database:
Contacts
-contact_id
-contact_name
File
-file_id
-file_code
-customer_id
-hauler_id
File_details
-file_id
-loadunload_id
...
1
vote
3answers
97 views
MySql: Select by Count with Union or Joins
I need a way for page moderators to view the members of their page ordered by the total number of posts the user has on that particular page. The posts are stored in different tables such as polls, ...
1
vote
4answers
40 views
Error while trying to query two tables with UNION ALL
I'm trying to query a single result from two tables in my database. Here is my code:
$pageid = mysql_real_escape_string($_GET['id']);
$query = sprintf("(SELECT * FROM classifieds WHERE pageid = ...
1
vote
2answers
117 views
PHP MySQL: How to select multiple tables and return output summary with good performance?
How to get result on PHP:
NU61 - sun - 2011
KE2I - ball - 2000
B8WO - point - 2008
table_first SELECT id, order, date FROM table_first ORDER BY orders DESC
return id, date
id | orders | ...
1
vote
3answers
63 views
How display multiple rows in a table with one row in another table after some calculations
I have two tables. Table "user" contains user_id, user_name. Table "Transactions" contains user_id, transactions
Eg:
TABLE USER:
+---------+-----------+
| user_id | user_name |
...
1
vote
1answer
37 views
SQL query with multible table joins count and sum issue
There are 2 tables. 1 tblBidder and 1 tblItem. They share 1 field that makes the association between the fields in each table. It is the bidder_number (for tblBidder) and item_bidder_number (for ...
1
vote
4answers
70 views
Get result from many tables in mysql
I have a few tables wich I need to get results from into one query.
This is how I make it today.
$sql="select * from structure
a, audio b where a.id=b.id_parent and b.published=1 order by b.data ...
1
vote
2answers
71 views
Delete referring to multiple table doesn't work on MYSQL
I'm trying to delete from a table, using joing from other tables.
My sql is the following:
DELETE FROM `threadsread`
USING `mybb_threads` t
WHERE
threadsread.tid=threads.tid and threadsread.uid in ...
1
vote
3answers
108 views
PHP MYSQL Query Multiple Tables Where the Second Table returns multiple rows
I'm trying to query 2 tables where the first table will return 1 row and the second table will return multiple rows. So basically the first table with return text on a page and the second table will ...
1
vote
1answer
29 views
Need to use criteria from multiple tables to acquire data from multiple tables
I'm having a bit of a hiccup regarding a particular SQL query. I need to join data from two tables, while also limiting the data (but not necessarily grabbing it) by means of a third table. The ...
1
vote
2answers
63 views
Database tables; spread them out, or null them together?
Quick question regarding database design;
Given I'm storing User data in a database, I can identify two (seemingly) separate forms of data associated with a user; account data, and profile data.
...
1
vote
1answer
113 views
Using MAX with multiple tables
I have a four tables: products, pc, laptop, and printer.
Products(maker, model, type)
PC(code, model, speed, hd, cd, price)
Laptop(code, model, speed, ram, hd, screen, price)
...
1
vote
1answer
151 views
Entity Framework map multiple tables to one entity. Concurrency check
I got one entity mapped to two tables. First of this tables has timestamp field.
What I want - if I modify field from first table it should check first table for concurrecny with timestamp column. The ...
1
vote
1answer
335 views
Word interop : Multiple tables in one bookmark
is it possible to insert multiple tables in one bookmark in Word 2007. I have template Word file and bookmark is in the middle of file. I need pagebreak after each table. My code seems to insert all ...
1
vote
1answer
88 views
MySQL Count Two Groups from a Joined Table
I have a table called Tickets with id, name.
and a table called Articles with id, ticket_id, and status.
I'm trying to display all Ticket names, along with a COUNT of Articles with that ticket_id, ...
1
vote
2answers
77 views
Getting name from phone number from multiple tables?
i have this tables:
inbox table
SenderNumber Message
contact table
Name Number
district table
id SpvName Number
sub_district table
id district_id SpvName Number
village table
id sub_district_id ...
1
vote
1answer
102 views
Mysql PHP trouble updating a table from a list of results
If anyone with patience can read this and help me, I would be overly grateful. I am having difficulty updating one mysql table. I have a table that stores dj's comments and feedback on record ...
1
vote
1answer
73 views
Need help with PHP and MySQL
I have a table of songs, some songs are album song, and some are singles...
And I have a table of albums...
Example:
if the album ID is [null], it means the song is a single
Songs Table:
...
1
vote
3answers
270 views
SQL: Select from one table matching criteria in another?
I'd really appreciate some help with an SQL query across tables. I realise this sort of thing is asked constantly, but I can't find a similar enough question to make sense of the answers.
I want to ...
1
vote
1answer
233 views
Show combined result from unrelated tables (linq to sql)
I'm struggling to work out the best way to show a combined result from two unrelated tables using linq to sql (C#). The tables are EmailAlerts and TextAlerts, each with UserName, Type and Status (plus ...
1
vote
3answers
762 views
Selecting distinct values from two tables
I have two rather large databases (+1 million rows each). Both tables have the same structure.
How can I check if each value in a column is unique across both tables?
Is there a
SELECT ...
1
vote
3answers
1k views
Multi Table Inheritance with rails 3
Are there standards or best practices yet when it comes to multi table inheritance in rails 3? So far the best article I could find was:
...
1
vote
1answer
76 views
SELECT from 2 tables
My tables:
table1
id|name_transfer|id_account_from|value_from|id_account_to|value_to
------------------------------------------------------------------
1 |transfer1 |1 |1000 |2 ...
1
vote
3answers
140 views
Mysql, multiple table update and strange result
I've got two tables :
TEST1 :
id int, value int, parentId int
and TEST2:
id int, value int, parentId int
In TEST1, I've got following records:
id value parentId
1 0 1
2 0 1
...
1
vote
2answers
203 views
Joining multiple Rows and summing them With MySQL (and PHP)
I have a table structure similar to this:
id | order1_id | order1_type | order1_amount | order2_id | order2_type | order2_amount
...
1
vote
1answer
488 views
SQL: Join multiple tables and get a grouped sum
I have a database with 3 tables that have related data. One table has transactions, and the other two relate to transaction categories. Basically it's financial data, so each transaction has a ...
1
vote
1answer
493 views
ASP.NET and SQL - inserting data into more than one table?
So I know similar questions have been asked before, but I couldn't find a clear answer for my specific situation. I'm using ASP.NET (in Visual Web Developer) and I need to insert data from one form ...
1
vote
3answers
1k views
Iphone programming: Multiple UITableViews reading from the same source?
This question is related to UITableView issue when using separate delegate/dataSource, though I have a different problem. I'm just starting to learn iPhone programming.
Basically I have one main view ...