0
votes
2answers
19 views
mysql query to find sum of different names
I use similar queries (10) as following queries (modified) to find sum
SELECT sum(amount) AS amount
FROM `students`
WHERE sex='M'
&& name in ('salil', 'anil', 'gaikwad')
...and:
…
1
vote
5answers
119 views
Can this query be done without a loop?
So, basically, I have a MySQL table called 'topics' and another one called 'replies', for example. In table 'topics', there's a field called 'relforum' which relates this topic to a forum section. And …
1
vote
5answers
44 views
php warning mysql_fetch_assoc
I am trying to access some information from mysql, but am getting the warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource for the second line of code below, any help …
0
votes
2answers
15 views
Create stored procedure in mysqladmin?
I am trying to create stored procedure in mysql admin. I am hosting a website in POWWEB.com. For this purpose i am trying to create stored procedure in mysqladmin.
The Mysql version is 5.0.45. I am …
0
votes
2answers
44 views
Parse error help, PHP unexpected T_STRING (probably something simple)
It's probably something simple I am not seeing because I've stared at it too long.
Any ideas? It's throwing on line 119, I've indicated it below
Parse error: syntax error, unexpected T_STRING in …
1
vote
2answers
49 views
mysql+php to subtract two times and display the differrence
hi!!
i've to display the differences between a column(reg_time) in mysql and the present time so that the final output (after some php to display in minutes or seconds or hours or days)
be:
…
0
votes
2answers
55 views
Recusive function
Hi i have the below table datas
id parent_id name
1 Machine
2 3 Ram
3 4 Cpu
4 Computer
5 6 food1
6 food2
My …
0
votes
1answer
47 views
MySQL UPDATE using IF condition
I'm not even sure if this is possible but I'm trying to do different UPDATE if a certain condition is met.
user [id, start_date(NOT NULL), end_date(NULL), reason(NULL), .....]
user_roles [id, …
0
votes
4answers
22 views
SQL ORDER by `no` with NULLs at the end
Hi!
I have got a MySql query that orders me results by no column (int, can be null).
Simple example:
SELECT * FROM table ORDER BY no ASC
I would like to get a resultset sorted like
1, 2, 3, 10, …
0
votes
1answer
51 views
MySQL MAX shows wrong result for associated data
I am creating a query to pull results from a MySQL database using PHP, the results of the query are output to an Excel document.
Here is the query:
$sql = "SELECT node, port, MAX(utiltx), …
0
votes
3answers
37 views
Detect when MySQL tables are in readlock state (from PHP)
Hello,
I need to get a PHP app to detect when it's MySQL database is in readlock, and throw an error message. Easy, but is there any MySQL command we can run to check current lock state, rather than …
1
vote
2answers
24 views
Conditional columns in MySQL that need to do joins
I've researched related questions on the site but failed to find a solution. What I have is a user activity table in MySQL. It lists all kind of events of a user within a photo community site. …
0
votes
4answers
59 views
select count and other recors in one single query
i have the following query
select main_cat_name,cat_url from mf_main order by main_cat_name
this returns whole data of my table.Now i want to have count of the total rows of this table.I can do it …
0
votes
0answers
21 views
Store keywords into database
Hi All,
I am having one form in which user will be entering keywords seperated by commas.
i need to store this keywords into database mysql.
each keyword should be in new row.
For that keyword the …
3
votes
5answers
115 views
Is it a good practice to write subqueries in MySQL?
I am writing the following sub query for some project specific purpose:
SELECT count(*) from table1
WHERE userB='$p' AND userA IN
(SELECT userB FROM table1
WHERE userA='$row[username]')
I …
