0
votes
2answers
30 views
MYSQL query within a query
I write a lot of queries resembling the query example code below. I was wondering whether there was a more efficient code/script?
$query1 ="SELECT * FROM table1 WHERE date >= '$todaysdate' ";
…
0
votes
3answers
21 views
No full-text support; must have effective mysql db search engine; where to find one?
I have asked several questions about Zend and its search functions.
Now after further reading I have noticed that it requires FULL-TEXT indexes in the MySQL fields.
My webhosting provider doesn't …
1
vote
2answers
36 views
thoughts on innerjoin mysql
We have tables with more then 3m records. When using innerjoin it is much slower then select * from db1,db2 where db1.field=db2.field
Any thoughts?
1
vote
2answers
34 views
Connecting to remote MySQL server using PHP
Hi All
I am attempting to connect to a remote MySQL server from my local machine virtualhost using the following code:
$conn = mysql_connect("$dbhost", "$dbuser", "$dbpass") or die(mysql_error());
…
0
votes
1answer
26 views
Snow Leopard update Dec 09. Did anyone else lose their MySQL data?
Initially I had to re-install MySQL when I upgraded to Snow. I managed to get everything backed up to .csv file and was able to migrate to the new install. It worked fine!
Earlier this week Mac issued …
0
votes
4answers
54 views
Is it a good practice to set the default value of some field/column as NULL in MySQL?
What are the disadvantages to do so?
0
votes
2answers
33 views
How to move a Windows XP MySQL database to Linux?
What is the recommended way of moving an MySQL database from Windows (XP) to Linux (Ubuntu 9.10)?
I am thinking running mysqldump from XP then import on the Linux box - is there a better way?
Has …
1
vote
2answers
23 views
How to manage an AJAX based ‘like/dislike’ feature?
I'd like to add a like/dislike-upvote/downovote-type feature to each one of the posts in the forum script I'm writing (much like the one here in SO). I'm having two difficulties trying to figure out …
0
votes
1answer
23 views
Why does mysql_num_rows($result) return 1 even if $result returns empty result set?
Why does mysql_num_rows($result) return 1 even if $result returns empty result set?
$resut=mysql_query("select * from tablename where column1='$memberid' and …
5
votes
9answers
173 views
+200
Is there a free tool to convert mysql dump to postgres
Hi!
I am trying to move my site from mysql to postgres, I don't know how to do it. Already dumped my mysql database with compatible option. But it's impossible to import the data directly. I wonder …
0
votes
2answers
17 views
MySQL - counting with HABTM relationships
I have 3 tables: 'cards', 'tags' and 'cardstags', where cards HABTM tags
Question: What query do I execute on the 'tags' table to count the number of associated 'cards' rows?
I'm looking for …
0
votes
3answers
59 views
What’s wrong with my MySQL statement?
UPDATE table1 SET announcer = ( SELECT memberid
FROM ( table1
JOIN users ON table2.username = table1.announcer
) AS a
WHERE a.username = table1.announcer )
#1064 - You have an error in your SQL …
0
votes
3answers
14 views
How to write this MySQL update statement?
How to write this MySQL update statement:
table1
identity
table2
memberid, username, email
Some values in identity of table1 are email, some are username, how to replace the values in identity of …
0
votes
1answer
36 views
is it invalid to set a reference to null or 0?
I'll be doing this in sqlite now that they support foreign keys and tsql and perhaps mysql.
Is it illegal to do something like
CREATE TABLE comment(
id integer primary key,
parent integer …
2
votes
4answers
72 views
How to update a web page without reloading the web page using AJAX?
I'm trying to update info that a users entered in to a mysql database using php without reloading the web page how can I do this an example or tutorials will be nice.
If there is a tutorial on how to …
