5
votes
6answers
78 views
How to turn this MySQL SELECT query into a DELETE query?
I want to delete certain items from the database. I have the following query:
SELECT *
FROM sheets, entries
WHERE entries.sheetID = sheets.id AND sheets.clientID = 13
This wor …
1
vote
1answer
16 views
trouble creating a sql statement select statement reference same table twice
Ok, here is setup. Note the code below is SIMPLIFIED version.
PHP 5.2
ENGINE: MyISAM
table quotes q
table users u
FROM quotes q LEFT JOIN users u
ON q.qid = u.uid
Soo.. …
0
votes
2answers
26 views
Fetch recently watched videos?
I am using MySQL.
I have the following table structure: tablename: Videos
videoId title description
1 Video title 1 Some description text1
2 …
0
votes
3answers
37 views
Can i execute a single query on 2 database?
I am using php and mysql.
i have a question, lets say, I have a userid column in users table under database A, and userid column in purchases table under database B.
Can I execut …
0
votes
5answers
28 views
Optimize simple update on table
Hi All,
I am running following query in a stored proceudre and it is taking 30 milliseconds to execute. Can anyone help me out to optimize this query:
Table Definition is:
Crea …
0
votes
2answers
31 views
PHP Ban Visitor & Insert into mySQL DB.
I have the below code that i am wanting to into certain files so that when someone visits this "certain" file they get banned if they are not allready. but for some reason it is n …
1
vote
2answers
129 views
Complicated SQL query - how do i do it ?
Hey Everyone
I'm currently working on a small feature for a project and wondered how best to achieve the result, i have a table full of reviews with the score being out of 5 and b …
0
votes
3answers
31 views
PL/SQL Query with Variables
I have a fairly complex query that will be referencing a single date as a start or stop date multiple times throughout. I'm going to have to run this query for 3 different fiscal y …
2
votes
1answer
39 views
Nhibernate ICriteria and Using Lambda Expressions in queries
hi i am new in NHibernate and i am a little confused.
Suppose we have a product table.
Let the product table have 2 columns price1 and price2.
then i may query mapped product en …
1
vote
3answers
69 views
SQL query problem with AND
I have a table that holds topic types another that holds materials. I then have another table which holds the keys of each table thus creating the many to many relation.
However, …
2
votes
3answers
38 views
MYSQL DATE function running insanely slow in LEFT JOIN
When adding the line:
LEFT JOIN core_records_sales as sales ON DATE(appointments.date) = DATE(sales.date_sold)
To my query, it boosts the time for the script to run from about 8 …
3
votes
5answers
35 views
Can i force mysql to perform subquery first?
I have query like this:
SELECT `table_1`.* from `table_1`
INNER JOIN `table_2` [...]
INNER JOIN `table_3` [...]
WHERE `table_1`.`id` IN(
SELECT `id` FROM [...]
)
AND [more c …
0
votes
5answers
23 views
suggest a link with such concepts implemented - java and mysql
i need to write a program in java that will connect to a mysql database and execute some sql queries and display the result. suggest me a link with similar implementation / discuss …
1
vote
4answers
33 views
Check a field in MySql from a php md5 string
hello all!
I'm trying to validate a pair of data columns on mysql from my php page across md5 function.
I've encrypted the string "helloworld" with php md5 function and attempted t …
0
votes
6answers
63 views
Database Index not used if the where criteria is != ?
I have a index on a column and it is correctly used when the query is
select * from Table where x = 'somestring'
However it seems to be not used when the query is something lik …
