Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

MySQL | Forum profile

Forum profile page for MySQL on http://www.daniweb.com. This report page is the aggregated overview from a single forum: MySQL, located on the Message Board at http://www.daniweb.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "MySQL" on the Message Board at http://www.daniweb.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: www.daniweb.com - IT Tech Talk - MySQL (site profile, domain info daniweb.com)
Title: MySQL
Url: http://www.daniweb.com/forums/forum126.html
Users activity: 19 post per thread
Forum activity: 24 active threads during last week
 

Posting activity on MySQL:

  Week Month 3 Months
Threads: 24 80 259
Post: 55 146 500
 

MySQL Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
mwasif
12
user's latest post:
Excel and transfer to Mysql
Published (2009-11-12 12:23:22)
Or you can use Navicat to directly import from Excel.
nav33n
7
user's latest post:
About a SELECT command to...
Published (2009-11-12 02:23:47)
Hi, If I understand your question right, this should do the trick. Help with Code Tags MySQL Syntax ( Toggle Plain Text ) SELECT * FROM customers c, cust_packages cp WHERE c.cust_custnr = cp.cpack_usernr GROUP BY cpack_usernr HAVING count ( * ) = 1 AND cpack_canceldate != '0000-00-00' select * from customers c, cust_packages cp where c.cust_custnr = cp.cpack_usernr group by cpack_usernr having count( * ) =1 and...
cwarn23
6
user's latest post:
How to store a big database -...
Published (2009-11-11 00:00:00)
• • • • Originally Posted by cwarn23 Did you know that with todays cpu speeds the average computer can calculate the reverse lookup of any hash that contains up to two digits. So if there are >=2 digits being stored in a hash then the computer can calculate the original two digit string within less than a second. Just a thing I learnt when creating a dehasher in Java. Oops... Wrong thread for this...
Atli
4
user's latest post:
How to store a big database -...
Published (2009-11-09 00:00:00)
• • • • Originally Posted by cwarn23 So is the char field type faster than text field type? Because that's what I really need to know although it's a bugga it will consume more space for faster performance. Not really, no. The field itself isn't faster. What makes it faster is that it will always have the same size for every row. If you create a CHAR(50) column and only put 20 characters into...
jrosh
4
user's latest post:
How to get the percentage??
Published (2009-11-12 06:23:34)
• • • • Originally Posted by urtrivedi Following query should work I m assuming that both table contains year column Help with Code Tags MySQL Syntax ( Toggle Plain Text ) SELECT sum ( elec.votes ) /sum ( stat.rating ) as percentage FROM elec INNER JOIN on elec. YEAR =stat. YEAR WHERE stat. YEAR = 2009 select sum(elec.votes)/sum(stat.rating) as percentage from elec inner join...
Venom Rush
3
user's latest post:
Universal character set?
Published (2009-11-09 00:00:00)
Hi guys Thanks for all the input. My suspicions lie with the hosting company. We've had numerous issues before and the problem was always something that they hadn't setup correctly. I'm going to test this on another database.
pritaeas
3
user's latest post:
How to get the percentage??
Published (2009-11-12 04:23:34)
Help with Code Tags MySQL Syntax ( Toggle Plain Text ) SELECT elec.sum ( votes ) as votes, stat.sum ( rating ) as rating, votes/rating as percentage FROM elec, stat WHERE YEAR = 2009 SELECT elec.sum(votes) as votes, stat.sum(rating) as rating, votes/rating as percentage FROM elec, stat WHERE YEAR=2009 Only thing I'm not sure about is the YEAR = 2009 in the where.
futhonguy
3
user's latest post:
Get ID from table
Published (2009-11-11 00:00:00)
Got it! Cool thanks mate..
AirGear
2
user's latest post:
mysql file created in php
Published (2009-11-10 13:54:31)
oh, thx dude. it's solved then!
darkagn
2
user's latest post:
SQL SELECT question.
Published (2009-11-13 21:36:01)
Looks like COUNTRYCODE is a VARCHAR(3) (that is a maximum of 3 character string) so I don't think you can store the Bahamas code in that field. However if you want all country codes that start with a 1, the following may help: Help with Code Tags sql Syntax ( Toggle Plain Text ) SELECT TARIFF FROM RATES WHERE COUNTRYCODE LIKE '1%' SELECT TARIFF from RATES where COUNTRYCODE like '1%'
 

Latest active threads on MySQL::

www.daniweb.com - IT Tech Talk
Started 7 months, 2 weeks ago (2009-04-01 14:45:39)  by archeons
Nvm... I solved it @@
Thread:  Show this thread (3 posts)   Thread info: how do you solve nested SELECT COUNT? Size: 145 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: how do you solve nested SELECT COUNT? :: MySQL :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 2 days ago (2009-11-14 03:36:01)  by joshua__lim
• • • • Originally Posted by darkagn Looks like COUNTRYCODE is a VARCHAR(3) (that is a maximum of 3 character string) so I don't think you can store the Bahamas code in that field. However if you want all country codes that start with a 1, the following may help: Help with Code Tags sql Syntax ( Toggle Plain Text ) SELECT ...
Thread:  Show this thread (2 posts)   Thread info: SQL SELECT question. Size: 2,577 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: SQL SELECT question. :: MySQL :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 3 days, 4 hours ago (2009-11-13 00:00:00)  by benkyma
that's just what I needed, thanks a lot
Thread:  Show this thread (2 posts)   Thread info: Selection by date Size: 166 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Selection by date :: MySQL :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 3 days, 15 hours ago (2009-11-12 12:23:22)  by mwasif
Or you can use Navicat to directly import from Excel.
Thread:  Show this thread (2 posts)   Thread info: Excel and transfer to Mysql Size: 305 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Excel and transfer to Mysql :: MySQL :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 3 days, 23 hours ago (2009-11-12 04:23:34)  by urtrivedi
Following query should work I m assuming that both table contains year column Help with Code Tags MySQL Syntax ( Toggle Plain Text ) SELECT sum ( elec.votes ) /sum ( stat.rating ) as percentage FROM elec INNER JOIN on elec. YEAR =stat. YEAR WHERE stat. YEAR = 2009 select sum(elec.votes)/sum(stat.rating) as percentage from elec ...
Thread:  Show this thread (3 posts)   Thread info: How to get the percentage?? Size: 1,639 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to get the percentage?? :: MySQL :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 1 week, 5 days ago (2009-11-04 01:20:21)  by cwarn23
Then how many rows do you have and how much cpu? In each of my tables is only 4 text columns and one int column. Also the word NULL occurs as the value most of the time with my current structure if that makes any difference. So I have 2.66GHz dual core with millions of rows. What are your specs for cpu and num of rows in your large database?
Thread:  Show this thread (16 posts)   Thread info: How to store a big database Size: 487 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to store a big database :: MySQL :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 5 days, 4 hours ago (2009-11-11 00:00:00)  by futhonguy
Got it! Cool thanks mate..
Thread:  Show this thread (6 posts)   Thread info: Get ID from table Size: 161 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Get ID from table :: MySQL :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 1 week ago (2009-11-09 00:00:00)  by AirGear
it means, if i have to submit the mysql files, i have to copy all the files in that directory? thx for your response.
Thread:  Show this thread (4 posts)   Thread info: mysql file created in php Size: 261 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: mysql file created in php :: MySQL :: www.daniweb.com - IT Tech Talk"
 

Hot threads for last week on MySQL::

MySQL
Started 1 week, 5 days ago (2009-11-04 01:20:21)  by cwarn23
Then how many rows do you have and how much cpu? In each of my tables is only 4 text columns and one int column. Also the word NULL occurs as the value most of the time with my current structure if that makes any difference. So I have 2.66GHz dual core with millions of rows. What are your specs for cpu and num of rows in your large database?
Thread:  Show this thread (16 posts)   Thread info: How to store a big database Size: 487 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to store a big database :: MySQL :: www.daniweb.com - IT Tech Talk"
MySQL
Started 5 days, 4 hours ago (2009-11-11 00:00:00)  by futhonguy
Got it! Cool thanks mate..
Thread:  Show this thread (6 posts)   Thread info: Get ID from table Size: 161 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Get ID from table :: MySQL :: www.daniweb.com - IT Tech Talk"
MySQL
Started 1 week ago (2009-11-09 00:00:00)  by AirGear
it means, if i have to submit the mysql files, i have to copy all the files in that directory? thx for your response.
Thread:  Show this thread (4 posts)   Thread info: mysql file created in php Size: 261 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: mysql file created in php :: MySQL :: www.daniweb.com - IT Tech Talk"
MySQL
Started 1 week ago (2009-11-09 00:00:00)  by jrosh
• • • • Originally Posted by mwasif Mention the full path to the destination where you mention the file name e.g. Help with Code Tags mysql Syntax ( Toggle Plain Text ) SELECT col1, col2 INTO OUTFILE '/home/data.txt' FIELDS TERMINATED BY ',' .... SELECT col1, col2 INTO OUTFILE '/home/data.txt' ...
Thread:  Show this thread (4 posts)   Thread info: creating files with 'outfile'?? Size: 3,143 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: creating files with 'outfile'?? :: MySQL :: www.daniweb.com - IT Tech Talk"
MySQL
Started 1 week, 2 days ago (2009-11-06 11:59:43)  by jbennet
Should be possible, because this site supports russian-type characters, and runs on mysql?.
Thread:  Show this thread (6 posts)   Thread info: Universal character set? Size: 218 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Universal character set? :: MySQL :: www.daniweb.com - IT Tech Talk"
MySQL
Started 1 week ago (2009-11-09 00:00:00)  by jrosh
• • • • Originally Posted by mwasif If you remember the MySQL root password, then go to phpMyAdmin directory under directory like wamp\apps\phpmyadmin3.1.3.1 and open config.inc.php. And provide the correct password in Help with Code Tags php Syntax ( Toggle Plain Text ) $cfg [ 'Servers' ] [ $i ] [ 'password' ] = ...
Thread:  Show this thread (3 posts)   Thread info: problem with wamp Size: 2,170 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: problem with wamp :: MySQL :: www.daniweb.com - IT Tech Talk"
MySQL
Started 3 days, 23 hours ago (2009-11-12 04:23:34)  by urtrivedi
Following query should work I m assuming that both table contains year column Help with Code Tags MySQL Syntax ( Toggle Plain Text ) SELECT sum ( elec.votes ) /sum ( stat.rating ) as percentage FROM elec INNER JOIN on elec. YEAR =stat. YEAR WHERE stat. YEAR = 2009 select sum(elec.votes)/sum(stat.rating) as percentage from elec ...
Thread:  Show this thread (3 posts)   Thread info: How to get the percentage?? Size: 1,639 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to get the percentage?? :: MySQL :: www.daniweb.com - IT Tech Talk"
MySQL
Started 3 days, 15 hours ago (2009-11-12 12:23:22)  by mwasif
Or you can use Navicat to directly import from Excel.
Thread:  Show this thread (2 posts)   Thread info: Excel and transfer to Mysql Size: 305 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Excel and transfer to Mysql :: MySQL :: www.daniweb.com - IT Tech Talk"
MySQL
Started 2 days ago (2009-11-14 03:36:01)  by joshua__lim
• • • • Originally Posted by darkagn Looks like COUNTRYCODE is a VARCHAR(3) (that is a maximum of 3 character string) so I don't think you can store the Bahamas code in that field. However if you want all country codes that start with a 1, the following may help: Help with Code Tags sql Syntax ( Toggle Plain Text ) SELECT ...
Thread:  Show this thread (2 posts)   Thread info: SQL SELECT question. Size: 2,577 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: SQL SELECT question. :: MySQL :: www.daniweb.com - IT Tech Talk"
MySQL
Started 3 days, 4 hours ago (2009-11-13 00:00:00)  by benkyma
that's just what I needed, thanks a lot
Thread:  Show this thread (2 posts)   Thread info: Selection by date Size: 166 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Selection by date :: MySQL :: www.daniweb.com - IT Tech Talk"