0
votes
0answers
8 views
MySQL sort by calculated value of 2 rows
I'm trying to create a MySQL statement that will sort by a value calculated within the statement itself. My tables look like this:
posts
+----+-----------+--------------+
| ID | post_type | …
0
votes
2answers
39 views
MySQL decimal(10,2) Increase By 10%
I have a column with data type decimal(10,2).
I want to increase all of the current values by 10%.
Thanks.
0
votes
3answers
27 views
mysql select in two tables
hi to all
I have two tables and one reference table for the query. Any suggestion or help would greatly appreciated.
table1
user_id username firstname lastname address
1 …
0
votes
2answers
29 views
How to get affected rows in previous MySQL operation?
mysql_affected_rows is to get number of affected rows in previous MySQL operation, but I want to get affected rows in previous MySQL operation.
For example:
update mytable set status=2 where …
0
votes
3answers
15 views
Mysql change number in column
Here is an easy question for someone. When using mysql, how do you increase or decrease the number in a particular cell by a specified amount with a single query. For example i have a product table …
0
votes
3answers
31 views
Force “implied AND” instead of “implied OR” in mysql boolean match?
In mysql boolean match, if no operators are present, OR is implied. If you want AND, you need to add + to each keywords.
So query "word1 word2" is equal to "word1 OR word2", "+word1 +word2" is …
0
votes
4answers
19 views
How do I remove slashes during a select statement
Please I am new. I am performing an insert select and I want to remove the slashes in a particular field say field b at the select portion of the query.
eg. insert into mytable(a,b,c) select a, …
1
vote
2answers
29 views
Does HIBERNATE support the limit statement in MySql??
I am working on a project which uses Java,MySql,Struts2 MVC and Hibernate. I tried using limit statement in hql query but its not working properly.
Select t from table1 t where t.column1 = :someVal …
1
vote
2answers
21 views
how to create mysql query for this criteria?
Hi,
I have to write an query something like this
select * from table where title like '% select from tableb %'
this select from tableb is a query and not a string
0
votes
1answer
25 views
Query from to date with php in mysql
Hello.
I have a date field in a mysql table formatted like this: Y-m-d.
I want to export every post that has a date between $fromDate and all the way to $toDate
I am sure its easy but now i am …
1
vote
1answer
26 views
Sub-query Optimization Talk with an example case
Hello guys,
I need advises and want to share my experience about Query Optimization. This week, I found myself stuck in an interesting dilemma.
I'm a novice person in mySql (2 years theory, less than …
0
votes
0answers
19 views
How do I increase Relevance value in an advanced MySQL query?
I've got a MySQL query similar to the following:
SELECT *, MATCH (`Description`) AGAINST ('+ipod +touch ' IN BOOLEAN MODE) * 8 + MATCH(`Description`) AGAINST ('ipod touch' IN BOOLEAN MODE) AS …
2
votes
3answers
39 views
Help with MySQL Query
Hello. I have two tables in my database, and I would like to retreive information from both of them without having to do two queries. Basically, the user_ID(s) retreived from the tasks table needs …
0
votes
4answers
46 views
Is there a way to transfer info from one database into another database?
I was wondering today if it was possible to transfer data from one database to another with one query. Say I have two tables:
CREATE TABLE `Table_One` (
`ID` int(11) NOT NULL auto_increment,
…
1
vote
3answers
49 views
Is it possible to create mutiple MySQL queries within the same table?
Is it possible to make multiple queries at once within the same query?
Here is an example of what I'm trying to do.
We have the following table:
| userid | price | stock | description |
…
