Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums

7 Posted Topics

Member Avatar for ohgosh

No they are different. Order by helps to sort the information by a certain column. By default is sorts ascending in mysql, however you can force it to sort descending by placing the keyword DESC after the column(s) you want to order by. Group by helps to group information depending …

Member Avatar for guruparthi
0
439
Member Avatar for balagod

Have you tried something like: mail($Recipient,$Subject,$Comments); It should work without having to configure any settings.

Member Avatar for Vote4WillFree
0
135
Member Avatar for ytregnn

You can write a java script to handle it by place the button within a form and having the form point to the script function. For example: <Script language="Javascript"> function sendthis(f){ var elm=f.elements['searchpedigree']; switch(elm.options[elm.selectedIndex].value){ case 'search1': window.location='pageA.html'; break; case 'search2': window.location='pageA.html'; break; } return false; } </script> <form onsubmit="return sendthis(this);" …

Member Avatar for Vote4WillFree
0
188
Member Avatar for ashwinperti

you can mysql query browser and open the file directly and run it.

Member Avatar for timmay
0
185
Member Avatar for Vote4WillFree

I have a table with three columns that I want to group. The columns are driver, passenger and date. Basically what I want is something like... SELECT COUNT(*) FROM TABLE GROUP BY driver,passenger,date; However what can happen is that the driver and passenger can be the opposite on the same …

0
76
Member Avatar for katharnakh

The insertion sql statement should be something like: INSERT INTO TABLE (column1, column2) SELECT column1, column2 FROM TABLE2 WHERE column3 = 4 make sure that the number of columns are the same and in the same order Hope it helps.

Member Avatar for Vote4WillFree
0
99
Member Avatar for Vote4WillFree

I have a serious problem. I am trying to update an entry in a parent table which has three children tables which are coupled in such a way that either on delete or update they are affected. What I want is to know if there is a way to update …

0
60

The End.