The multiple-records tag has no wiki summary.
0
votes
0answers
49 views
MySQL tricky multiple row insert/update into two tables
There are two tables with the following columns:
table1 (id1, id2) //pairs (id1, id2) - are unique
table2 (id2, name) //id2 - is auto incrementing, name - string
from PHP i have 100-300 pairs ...
0
votes
1answer
24 views
rails 3 fields_for nested forms multiple records
Maybe someone here will help me.
I've got the following model vehicle.rb:
class Vehicle < ActiveRecord::Base
attr_accessible :parameters_attributes
has_many :parameters, dependent: :destroy
...
0
votes
1answer
75 views
Match when column does and does not equal value across multiple rows
I have a table with a many-to-many relationship to two other tables:
CREATE TABLE assoc (
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
ref1 INT NOT NULL,
ref2 INT NOT NULL,
INDEX composite_key ...
1
vote
1answer
18 views
How to force that record isn't shown twice when searching. codeigniter
I have a search function with a joined table.
I have a table factories. In this table i search for factories.
i also have a table called tags. in this table i have tags for specific factories. with a ...
0
votes
1answer
74 views
Multiple rows from MySQL query saved in an array structure
I have this Python code:
self.lock_tables("read", ['nets_permissions as n', 'devices_permissions as d'])
usrs = self.db.get("SELECT n.user_id FROM nets_permissions as n \
left ...
-1
votes
3answers
279 views
How to delete multiple rows from Oracle big table?
We have a big table about 380 million records. We need to delete first 250 million records which are older than January 1st 2013. I have googled some methods but I didn't satisfied. Common and fastest ...
1
vote
2answers
300 views
Codeigniter - update table from form with checkbox
I'm trying to update a MySQL table with Codeigniter.
My model code is:
function update_customer_records($updatedrow)
{
$this->db->where('id',$this->input->post('id'));
...
0
votes
1answer
376 views
Codeigniter update mysql table data from form with checkbox
New to codeigniter and trying to get my head around updating checked rows from a user form.
My view generates a form with MySQL data as below:
<?php
echo ...
0
votes
1answer
104 views
Process multiple records, one at a time, with same form
I have a table that contains multiple records for the same user (each record is slightly different - for a reason).
I need to be able to edit each record, one at a time, using a standard Yii form.
...
2
votes
3answers
587 views
MySQL delete multiple rows in one query conditions unique to each row
So I know in MySQL it's possible to insert multiple rows in one query like so:
INSERT INTO table (col1,col2) VALUES (1,2),(3,4),(5,6)
I would like to delete multiple rows in a similar way. I know ...
0
votes
0answers
140 views
Laravel: Strange behavior when updating multiple records
I'm updating multiple records in my DB using Laravel, I will attempt to describe the issue after showing my setup:
// The page lease_rates.blade.php:
@master('master.admin')
@section('content')
...
1
vote
1answer
305 views
VBA ADODB - Get multiple rows affected from single query
I am running an update query to SQL Server through VBA using VBA's ADODB connection class. In SQL Server the query returns rows affected which can be accessed in VBA through the ADODB command class.
...
0
votes
1answer
549 views
pl/sql function: Extract multiple rows from function in oracle
I have multiple tables in my database. I have to findout name of those tables whose name like %UBL%.
For that, I write a program as:
CREATE OR REPLACE FUNCTION fun_tablefinder( keyword VARCHAR2 )
...
0
votes
1answer
84 views
ModelBinding To Complex Objects
hi i am trying to insert multiple records at same time from single form following are my models and views
My Models
public class Invoice
{
public int InvoiceID { get; set; }
public string ...
0
votes
3answers
1k views
inserting multiple rows in database on codeigniter [duplicate]
Possible Duplicate:
insert multiple rows via a php array into mysql
i am trying to insert only filled data in to the database. my controller
$code=$_POST['code'];
$rate=$_POST['rate'];
...
0
votes
4answers
82 views
Adding Multiple Records to a table
I have a customer database I would like to add a set of Card numbers to. In the table there are multiple columns that will be the same, however the Card number will increase by 1 until finished. So ...
0
votes
1answer
390 views
Combine multiple queries against one table into multiple fields of one result set
ANSWER: Here's the final query built from @Michael 's answer:
SELECT
Emp_ID,
MAX(CASE WHEN Skill_ID = 'WLN' THEN (Rating > 0) END) AS `WLN`,
MAX(CASE WHEN Skill_ID = 'LOC' THEN ...
0
votes
2answers
371 views
Handling multiple records and models trought ajax in a form using Yii
This must be a common scenario somehow:
On a form called Subscription we have, among other subscription related fields, this:
Select How many foo you need:
Select box with 5 options from [1] to ...
0
votes
1answer
161 views
using the form helper for multilpe records
I have a table called specs. I need to edit multiple rows from it in one form and save it at once.
// table structure
specs [id, name, value, owner_id]
// controller part
$data = ...
0
votes
0answers
182 views
Howto write form_for without :url for multiple object editing?
I am following http://railscasts.com/episodes/52-update-through-checkboxes. There a form can be written like this: <% form_tag update_multiple_products_path, :method => :put do %>. This does ...
1
vote
4answers
3k views
SQL: Compare row with previous row based on a specific condition
I wanted to retrieve records from a table by comparing with previous entry (for that account).
Please take a look the table and data below.
In this out put I wanted is,
ID_NUM DELIVERY_TYPE
100 ...
2
votes
2answers
2k views
Inserting multiple rows in a table using PHP
I am trying to insert multiple rows into MySQL DB using PHP and HTML from. I know basic PHP and searched many examples on different forums and created one script however it doesn't seem working. Can ...
3
votes
1answer
2k views
How to delete multiple rows with 2 columns as composite primary key in MySQL?
My innodb table has the following structure: 4 columns (CountryID, Year, %Change, Source), with the 2 columns (CountryID, Year) as the primary key. How do I delete multiple rows other than using a ...
1
vote
1answer
1k views
Update multiple rows based on multiple values
Lets say I have this:
Declare @passRefID as int
Declare @passTextA as varchar
Deckare @oassTextB as varchar
Declare @passPropertyA as int
Declare @passPropertyB as int
Set @oassTextA = 'Joe'
Set ...
0
votes
2answers
240 views
MySQL single row with multiple records
I have a table with contains multiple rows that define "amenities" for a particular resort. I need to return the resortID if there are rows containing whatever "amenOptionID" I define. My issue comes ...
0
votes
2answers
572 views
How to identify duplicate items gathered from multiple feeds and link to them in a Database
I have a Database storing details of products which are taken from many sites, and gathered through the individual sites API's. When I call the feed, the details are stored in a database table.
The ...
1
vote
3answers
2k views
How do I set a unique ID for checkboxes in a multi-record Rails form?
I've set up a Rails form roughly following the instructions in this Railscast.
Here's the code for the form:
<% form_tag complete_todos_path, :method => :put do %>
<ul>
...
7
votes
4answers
8k views
How do I edit multiple records in one Ruby on Rails form?
I'm making a simple to-do list application to teach myself Ruby on Rails, however I've run into a problem. I have a simple form that lists to-do items with a check box to the left of them, and an ...
1
vote
2answers
581 views
Return Multiple Results in Linq2Sql without a stored procedure?
i would like to return two record sets from a simple database table with one Linq2Sql query. I know how to do it if this was using Linq2Sql calling a stored procedure, but I don't want to use a stored ...

