Tagged Questions
1
vote
1answer
288 views
Stored procedure mixing results into temp tables from different invokations
I'm using a stored procedure in Mysql that creates 3 temporary tables that store records from database's tables, and then used to select the final result from those subset of stored records.
The ...
0
votes
1answer
74 views
PHP: Remove Rows Not in Large List
My application needs to change a value in a table if it is not in a very large set (20,000 items) that come in through an XML API. Obviously, it would be easy to create a solution that would be very ...
0
votes
1answer
247 views
Temporary Table and Left Joins not showing results as expected
I'm really hoping someone can help me with this. I have a number of product attribute types that users can select from to refine the products that are returned to them on screen. What I'm trying to ...
1
vote
1answer
153 views
Pagination from Temporary Table
If I paginate from a temporary table, when do I drop the table? Does/can the table go into memory once it hits the front end so that the table can be dropped immediately? Or does it need to "hang ...
2
votes
4answers
1k views
Create temporary table in CakePHP and load it as a Model
My plan is to create a temporary table using the $this->Model->query(); method then load it as a Model but I'm getting an error staying "Missing Database Table". Turning on debug to level two shows ...
1
vote
1answer
443 views
Paginate TEMPORARY TABLE in Cakephp?
Let say I have a table named 'products' and Model named 'Product'.
'products' table has 3 fields id,title,price,created
I want to calculate cal_price (which varies per record and day of search) and ...
0
votes
1answer
289 views
mysql & php: temporary/ virtual ids for query results?
I wonder if it is possible to assign temporary/ virtual IDs for a query result?
For instance, I have this as my query,
SELECT
pg_id AS ID,
pg_url AS URL,
pg_title AS Title,
pg_content_1 AS Content
...
1
vote
1answer
8k views
PHP, MySQL, and temporary tables
Php novice.
1.Is there anything wrong with this PHP & MySQL code?
include_once "db_login.php" ;
$sql = "DROP TEMPORARY TABLE IF EXISTS temp_sap_id_select" ;
mysql_query ( $sql ) or ( "Error " . ...
0
votes
2answers
1k views
My SQL Using temporary tables with PHP without mysql_pconnect
I want to use temporary tables in my PHP code. It is a form that will be mailed. I do use session variables and arrays but some data filled in must be stored in a table format and the user must be ...