User DBMarcos99 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:29:38Z http://stackoverflow.com/feeds/user/123595 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/796593/can-i-display-the-output-of-mysql-using-cgi/1816083#1816083 0 Answer by DBMarcos99 for Can I display the output of MySQL using CGI? DBMarcos99 2009-11-29T17:12:26Z 2009-11-29T17:12:26Z <p>I too wondered if it were difficult to display Mysql database records using cgi on web pages. Here's a link to how I did it (although it's fairly basic, it really wasn't too difficult): <a href="http://markfightscode.blogspot.com/2009/11/using-perl-and-mysql-to-create-webpage.html" rel="nofollow">Using Perl and Mysql to create a webpage</a></p> <p>I made use of the CGI, HTML::Template and DBI modules. Here's a link to a basic tutorial that uses modules to create a guestbook webpage: <a href="http://www.bin-co.com/perl/tutorial/modules.php" rel="nofollow">Using modules to create a webpage</a></p> http://stackoverflow.com/questions/1791137/control-logic-using-htmltemplate 4 Control logic using HTML::Template DBMarcos99 2009-11-24T16:19:01Z 2009-11-24T16:35:59Z <p>Just a couple of quick questions. If I'm writing CGI programs to create web pages via <a href="http://search.cpan.org/perldoc/HTML%3A%3ATemplate" rel="nofollow">HTML::Template</a>, then do I have to write separate <code>tmpl</code> files for each distinctive screen (the control logic to be in the Perl code)? </p> <p>Also, (and in a similar area) is it OK to put url links to the other screen CGI programs within the <code>tmpl</code> files? For example if one screen displays employee details, could I put a link on the department field to display department details on another screen - I'm guessing I can, but want to know if there are repercussions?</p> <p>Hmm, maybe they are quick questions, but the answers may be involved, so if anyone knows a good web source that explains this a link would suffice.</p> http://stackoverflow.com/questions/1461695/how-do-i-utilise-longitude-latitude-values-efficiently-in-mysql 2 How do I utilise longitude/latitude values efficiently in Mysql ? DBMarcos99 2009-09-22T18:10:44Z 2009-10-03T10:06:18Z <p>Thanks to Wikileaks, here in the UK we can now access our longitude and latitude co-ordinates for each post code <a href="http://wikileaks.org/wiki/UK%5Fgovernment%5Fdatabase%5Fof%5Fall%5F1,841,177%5Fpost%5Fcodes%5Ftogether%5Fwith%5Fprecise%5Fgeographic%5Fcoordinates%5Fand%5Fother%5Finformation,%5F8%5FJul%5F2009" rel="nofollow">wikileaks postcodes uk</a> IMPORTANT. Do not use this data in public applications - There's concern that the data has been deliberately corrupted and you could be held as being in breach of copyright law. Try using data from an open source site like this <a href="http://www.npemap.org.uk/data/" rel="nofollow">Postcode UK site</a></p> <p>Now, it's possible to calculate distances between each point using the following calculation (originally from the fine book Pro Mysql):</p> <blockquote> <p>The distance d between two points (x1,y1) and (x2,y2) can be calculated from the following equation (so long as x values are latitude and y values are longitude in radians, r is the radius of the sphere which is 3956 in miles):</p> <p>d= acos(sin(x1)<em>sin(x2)+cos(x1)</em>cos(x2)*cos(y2-y1)) * r </p> </blockquote> <p>Now is this good enough, or should I use the new GIS data types and functions, and if so, how do I convert my longitude and latitude references to the Point data type? I realise that because the Earth is not a perfect sphere, so the distance calculation I quote above is not perfect; however it's good enough for my purposes. Would using the new GIS functionality a) make calculation of distance quicker b) make the distance calculation more exact?</p> http://stackoverflow.com/questions/78955/what-are-the-best-programming-and-development-related-blogs/1000576#1000576 0 Answer by DBMarcos99 for What are the best programming and development related Blogs? DBMarcos99 2009-06-16T10:04:15Z 2009-09-20T23:05:06Z <p>This guy seems to know his Perl stuff, yet makes his blog entries interesting and readable to non-geeks:</p> <p><a href="http://dave.org.uk/" rel="nofollow">http://dave.org.uk/</a></p> http://stackoverflow.com/questions/78955/what-are-the-best-programming-and-development-related-blogs/1000634#1000634 0 Answer by DBMarcos99 for What are the best programming and development related Blogs? DBMarcos99 2009-06-16T10:15:07Z 2009-09-20T23:02:36Z <p>Lastly, here's a useful source on MySQL admin and performance stuff (lot's more blogs via <a href="http://www.planetmysql.org/" rel="nofollow">Planet MySQL</a>.)</p> <p><a href="http://www.mysqlperformanceblog.com/" rel="nofollow">MySQL Performance Blog</a></p> <p>I hope these links are of use to someone out there! (my first posts on this site, by the way! As a newbie I'm not able to post more than one link per post; having said that the OP asks for just one blog per answer.)</p> http://stackoverflow.com/questions/1000734/how-do-you-escape-an-addiction-to-stackoverflow-or-other-it-sites 4 How do you escape an addiction to stackoverflow (or other IT sites)? [closed] DBMarcos99 2009-06-16T10:44:59Z 2009-09-14T19:00:05Z <p>Hi, this may seem like a strange question for a newbie, but I can already see how this site can become addictive. How do you escape its lure, so you have time to get on with your normal life? Strict time limits? Or do you set definite tasks (eg look for a certain answer to a problem) and then log out when accomplished?</p> http://stackoverflow.com/questions/1369446/going-to-oracle-from-mysql/1369794#1369794 1 Answer by DBMarcos99 for Going to Oracle from MySQL DBMarcos99 2009-09-02T19:56:09Z 2009-09-02T19:56:09Z <p>Point Two It may have changed since I last used it, but you wouldn't put select 6 * 7; as a statement - you'd use the pseudo-table dual ie select 6 * 7 from dual; Also, if you're used to using the Limit clause in Mysql you may need to be careful in using rownum in Oracle. You should also investigate date formats and functions in Oracle, which differ to those in Mysql.</p> http://stackoverflow.com/questions/1321635/what-are-the-essential-dba-skills-a-developer-should-learn 5 What are the essential dba skills a developer should learn? DBMarcos99 2009-08-24T10:42:25Z 2009-08-24T12:50:45Z <p>Creation of objects like tables and indexes are fairly essential, even if the code has to be authorized or created by the dba. What other areas normally carried out by dbas should the accomplished developer be aware of?</p> http://stackoverflow.com/questions/1273770/a-great-tutorial-of-mysql-to-jump-right-in/1276730#1276730 1 Answer by DBMarcos99 for A great tutorial of mysql to jump right in? DBMarcos99 2009-08-14T08:42:38Z 2009-08-14T08:42:38Z <p>As well as the standard method of using Google, you can also find quite a few decent tutorials popping up on YouTube nowadays. As for web recommendations here's a couple that go a little beyond the immediate beginner - not strictly tutorials, but they should help a lot (the second is mine I have to confess, but it does have a lot of useful links too) <a href="http://www.artfulsoftware.com/infotree/queries.php?&amp;bw=1024" rel="nofollow">Mysql common queries</a> <a href="http://www.oxfordtechnotes.co.uk/sqlblog/blog4.php" rel="nofollow">Blog on using Mysql</a> To start with, here's a very useful cheat sheet on Mysql <a href="http://www.nparikh.org/unix/mysql.php" rel="nofollow">cheat sheet</a></p> http://stackoverflow.com/questions/1205286/renaming-the-current-file-in-vim/1205351#1205351 1 Answer by DBMarcos99 for Renaming the current file in Vim DBMarcos99 2009-07-30T09:00:26Z 2009-07-30T09:00:26Z <p>I don't know if this is the "easiest" method, but assuming you've already saved your file (:w) I would invoke the shell (:sh) and do a simple cp foo foo.bak To go back to editor use Ctrl-D/Exit. Useful list of vi editor commands <a href="http://kb.iu.edu/data/afdc.html" rel="nofollow">on this link</a></p> http://stackoverflow.com/questions/1204402/how-do-i-ask-for-help-optimizing-fixing-queries-in-mysql/1205290#1205290 -1 Answer by DBMarcos99 for How do I ask for help optimizing & fixing queries in MySQL? DBMarcos99 2009-07-30T08:47:13Z 2009-07-30T08:47:13Z <p>Knowing which indexes you have on the tables concerned is vital, imo. You state you are using a substring of column_bar in the where clause - you may need to denormalize and store this substring in another column and then index it. There again cardinality of the column can make it worthless using an index on that column, if (for example) there are only 2 distinct values present. For a useful video tutorial on Performance Tuning Best Practices watch this <a href="http://www.youtube.com/watch?v=u70mkgDnDdU" rel="nofollow">youtube video</a> by Jay Pipes.</p> http://stackoverflow.com/questions/1202175/is-there-a-simple-way-to-match-more-than-1-occurence-of-a-specified-string-on-eac 1 Is there a simple way to match more than 1 occurence of a specified string on each line? DBMarcos99 2009-07-29T18:31:52Z 2009-07-29T18:55:56Z <p>Hi, I've been trying to do the following:</p> <pre><code> if (m/(foobar)\{2,}?/ig) </code></pre> <p>to process a file and only act on those lines where greater than 2 occurences of 'foobar' are present. Not working - I suspect it may need the "back-referencing" technique, but I'll be pleasantly surprised if someone here can do it with a simple matching technique</p> http://stackoverflow.com/questions/1184516/mysql-mssql-oracle-when-to-use-which/1184722#1184722 0 Answer by DBMarcos99 for MySQL, MSSql, Oracle: When to use which? DBMarcos99 2009-07-26T14:29:41Z 2009-07-26T14:35:43Z <p>Perhaps one variable which people overlook in these cases is the availability of expert support. Okay, so currently there's an oversupply of people who can help you with db issues, efficiency issues, disaster recovery etc. However this may not be always the case in the future, and it's the applications you use it for that may be the defining issue. Are there people in your organization who have experience in one or more of the relevant databases? (as it happens I believe that someone's who's become proficient in say Oracle, can become fairly competent in Sql*Server or Mysql in a fairly short space of time) You state it's going to be used for your financial systems - perhaps you really need input from a consultant who's worked on implementing and/or supporting financial systems - for example I understand that Sybase is popular in City type firms. Or perhaps there's an off-the-shelf package that utilises a preferred database? Try and define exactly what your system(s) needs to do first.</p> http://stackoverflow.com/questions/78955/what-are-the-best-programming-and-development-related-blogs/1000604#1000604 0 Answer by DBMarcos99 for What are the best programming and development related Blogs? DBMarcos99 2009-06-16T10:10:04Z 2009-07-22T19:32:09Z <p><a href="http://jldexcelsp.blogspot.com/" rel="nofollow">Jorge Dunkelman's blog</a> may be of interest to Spanish speakers, especially those needing help with Excel.</p> http://stackoverflow.com/questions/1146913/select-10-rows-per-day-with-order/1150552#1150552 0 Answer by DBMarcos99 for select 10 rows per day with order DBMarcos99 2009-07-19T18:43:44Z 2009-07-19T18:55:56Z <p>After looking at (the ever excellent) xaprb blog from Baron Schwarz, <a href="http://www.xaprb.com/blog/2006/12/02/how-to-number-rows-in-mysql/" rel="nofollow">http://www.xaprb.com/blog/2006/12/02/how-to-number-rows-in-mysql/</a> I wonder if the use of user-defined variables could work here.</p> <pre><code>select hiredate, ename, sal from ( select hiredate, ename, sal, @num := if(@hiredate = hiredate, @num + 1, 1) as row_number, @hiredate := hiredate as dummy from emp_temp ) as x where row_number &lt; 3 order by hiredate, ename, sal </code></pre> <p>I've only tried the above for small sets of data, but it seems to work in bringing back just two records per hiredate. So far as I can tell from limited testing it should scale up for greater data sets. ( there may be performance issues in large data sets as Mysql is creating a temporary table)</p> http://stackoverflow.com/questions/368858/hidden-features-of-mysql/1021604#1021604 2 Answer by DBMarcos99 for Hidden Features of MySQL DBMarcos99 2009-06-20T13:18:28Z 2009-07-16T11:27:54Z <p>If using cmdline Mysq, you can interact with the command line (on Linux machines - not sure if there is an equivalent effect on Windows) by using the shriek/exclamation mark. For example:</p> <pre><code>\! cat file1.sql </code></pre> <p>will display the code for file1.sql. To save your statement and query to a file, use the tee facility</p> <pre><code>\T filename </code></pre> <p>to turn this off use \t</p> <p>Lastly to run a script you've already saved, use "source filename". Of course, the normal alternative is to direct in the script name when starting mysql from the command line:</p> <pre><code> mysql -u root -p &lt; case1.sql </code></pre> <p>Hope that's of use to someone !</p> <p>Edit: Just remembered another one - when invoking mysql from the command line you can use the -t switch so that output is in table format - a real boon with some queries (although of course terminating queries with \G as mentioned elsewhere here is also helpful in this respect). A lot more on various switches <a href="http://www.techotopia.com/index.php/The%5Fmysql%5FCommand-Line%5FTool" rel="nofollow">Command Line Tool</a></p> <p>Just found out a neat way to change the order of a sort (normally use Case...) If you want to change the order of a sort (perhaps sort by 1, 4, 3 ,2 instead of 1, 2, 3,4) you can use the field function within the Order by clause. For example</p> <p>Order By Field(sort_field,1,4,3,2) </p> <ul> <li>Found this out here <a href="http://stackoverflow.com/questions/1126961/order-by-dayofweek-in-mysql">http://stackoverflow.com/questions/1126961/order-by-dayofweek-in-mysql</a> courtesey of user gms8994</li> </ul> http://stackoverflow.com/questions/1136930/mysql-1-millon-row-query-speed/1136940#1136940 0 Answer by DBMarcos99 for MySQL 1 millon row query speed DBMarcos99 2009-07-16T11:24:14Z 2009-07-16T11:24:14Z <p>Does there need to be an index on play_date, or move the position in the composite index to second place?</p> http://stackoverflow.com/questions/1130219/annoying-phpmyadmin-export-feature 0 Annoying PhpMyAdmin export feature DBMarcos99 2009-07-15T08:56:45Z 2009-07-15T08:59:10Z <p>I wonder if any other users of PhpMyAdmin for Mysql have come across this niggle? Normally when exporting the results of a sql query, you're given options (eg what format to export in , name of filename etc). However above a certain number of rows, these options are not available and you can only see the sql on the normal window. Obviously there are workarounds (I do a copy => Paste Special => Unicode text) but I wonder if anyone's got it working correctly? Changing the Show and Repeat Headers value on the screen doesn't seem to enable the export to csv option for larger (ie > 100) data sets.</p> http://stackoverflow.com/questions/1113484/how-do-i-best-advertise-my-availability-to-prospective-employers 3 How do I best advertise my availability to prospective employers? DBMarcos99 2009-07-11T10:59:01Z 2009-07-11T14:27:58Z <p>I'm aware of the the likes of Guru.com and GetACoder.com, but these tend (don't they?) to be short term contracts, whereas my type of work (database admin and support, data analysis) often requires longer term commitment. My last few contracts were extended, so I'm confident I can adapt and add value to any company that hires me. However in the current climate I'm finding it very hard to get past the gatekeepers (ie agencies and/or HR departments). The avenues that seemed to work in the past eg jobserve, Monster etc. don't seem to be as effective now. Apart from LinkedIn, can anyone recommend other ways of self-publicising? So far I've looked into contributing to technical forums and maintaining blogs (well, I'm working on these). Any additional ideas will be very welcome (I'm based in the UK).</p> http://stackoverflow.com/questions/1023607/products-of-our-environment-in-what-degree/1023623#1023623 2 Answer by DBMarcos99 for Products of our environment? In what degree? DBMarcos99 2009-06-21T10:31:46Z 2009-06-21T10:31:46Z <p>Surely you learn a lot from being inquisitive, from studying books and tutorials, from contributing to websites, forums etc? You're not limited by what your minimum tasks are at work. In fact, if you're not interested in finding new solutions to problems or in extending your skill set, I wonder if you don't have the relevant aptitude to be a coder. Incidentally, I believe that it can often be the case that you learn more in a small setup. You will often have to perform different roles - sys admin, analysis, design, testing etc. as there won't be others dedicated to these specialized functions as would be the case in a larger enterprise.</p> http://stackoverflow.com/questions/1018880/advantage-to-parsing-excel-spreadsheet-data-vs-csv/1021453#1021453 0 Answer by DBMarcos99 for Advantage to parsing Excel Spreadsheet data vs. CSV? DBMarcos99 2009-06-20T11:29:28Z 2009-06-20T12:30:19Z <p>Remember that if you're importing the csv file directly into Mysql, that you may have problems with the date format (as Mysql uses a different date format to Excel). I find it easier to change the date fields in Excel first (to format yyyy-mm-dd) prior to saving as a csv file. Edit: Although I've not used it myself, others have recommended Navicat as a very good tool for converting Excel spreadsheets or Access data into Mysql databases. May be worth a look.</p> http://stackoverflow.com/questions/984868/is-my-book-too-old-to-learn-from-perl/1009374#1009374 0 Answer by DBMarcos99 for Is my book too old to learn from? (perl) DBMarcos99 2009-06-17T20:29:35Z 2009-06-17T20:29:35Z <p>There are also plenty of tutorials and blogs on the web, to supplement your learning (along with the standard sites like PerlMonks, this site etc). Try this one:</p> <p><a href="http://www.steve.gb.com/perl/tutorial.html" rel="nofollow">Perl Tutorial</a></p> http://stackoverflow.com/questions/999226/1-index-for-2-kinds-of-queries-below-possible-in-mysql/1003337#1003337 0 Answer by DBMarcos99 for 1 index for 2 kinds of queries below possible in MYSQL? DBMarcos99 2009-06-16T18:56:56Z 2009-06-16T19:16:15Z <p>You stated "If create index on (type,last),the first one won't use index." Are you sure about this? I was under the impression this is exactly the circumstance under which a covering index would execute. EDIT: Unless of course there's a selectivity problem with the data - if most records have type 1 or 3 then the optimizer wouldn't use the index (regardless of whether it was a basic or composite index).</p> http://stackoverflow.com/questions/1001543/in-vs-join-with-large-rowsets/1002125#1002125 0 Answer by DBMarcos99 for IN vs. JOIN with large rowsets DBMarcos99 2009-06-16T15:10:06Z 2009-06-16T15:10:06Z <p>It's generally held that a join would be more efficient than the IN subquery; however the SQL*Server optimizer normally results in no noticeable performance difference. Even so, it's probably best to code using the join condition to keep your standards consistent. Also, if your data and code ever needs to be migrated in the future, the database engine may not be so forgiving (for example using a join instead of an IN subquery makes a huge difference in MySql).</p> http://stackoverflow.com/questions/315504/tricks-for-generating-sql-statements-in-excel/1000963#1000963 0 Answer by DBMarcos99 for Tricks for generating SQL statements in Excel DBMarcos99 2009-06-16T11:42:15Z 2009-06-16T11:42:15Z <p>Exporting an excel file as csv can be an alternative option (see Bill Krawin's post - as a new poster, I can't add comment yet). However be warned that you will probably have to change the formatting of your date fields to yyyy-mm-dd, otherwise the date columns will all show 00/00/00 – this is because MySQL uses a different date fomat to Microsoft Excel. Alternatively use OpenOffice to save the csv file.</p> http://stackoverflow.com/questions/950179/i-want-to-develop-a-web-site-like-stackoverflow-but-ive-never-done-anything-for/1000717#1000717 0 Answer by DBMarcos99 for I want to develop a web site like StackOverflow, but I've never done anything for web. How can I do this? DBMarcos99 2009-06-16T10:37:52Z 2009-06-16T10:37:52Z <p>Learn to make web applications, using your preferred technology (you can do this in php/mysql for example). A book I learnt quite a lot from is "Practical Php and Mysql" by Jono Bacon, despite the typos, but there are plenty of text books to set you on your way. I have to echo the comments above - it's not just learning how to design and implement the database structure; you also have to make your client side coding secure and efficient. Then, you have to consider hosting options and scalability. Lastly, if you're looking to make the site successful you're going to need some knowledge of marketing/seo etc. Having said all this, I'd say go ahead (assuming you have the time and resources to pursue this). You're going to learn an awful lot (a lot of the time through making mistakes). If you do manage to get your site up and running, you'll have something to be proud of. Good luck!</p> http://stackoverflow.com/questions/1791137/control-logic-using-htmltemplate/1791264#1791264 Comment by DBMarcos99 on Control logic using HTML::Template DBMarcos99 2009-11-24T16:50:37Z 2009-11-24T16:50:37Z Thanks Sinan. You've stated what I originally guessed, but good to get some confirmation from a guru. http://stackoverflow.com/questions/1461695/how-do-i-utilise-longitude-latitude-values-efficiently-in-mysql/1461812#1461812 Comment by DBMarcos99 on How do I utilise longitude/latitude values efficiently in Mysql ? DBMarcos99 2009-09-30T12:48:26Z 2009-09-30T12:48:26Z Interesting that you use 6367 as the figure for the Earth's radius in kilometres - This figure seems to vary between 6356 and 6378 according to different sources. Anyway, I'm marking this as the accepted answer http://stackoverflow.com/questions/1461695/how-do-i-utilise-longitude-latitude-values-efficiently-in-mysql/1461786#1461786 Comment by DBMarcos99 on How do I utilise longitude/latitude values efficiently in Mysql ? DBMarcos99 2009-09-22T18:35:44Z 2009-09-22T18:35:44Z Thx for that. I was really looking for options within Mysql, but using the API interface can be a useful alternative. http://stackoverflow.com/questions/1461695/how-do-i-utilise-longitude-latitude-values-efficiently-in-mysql/1461812#1461812 Comment by DBMarcos99 on How do I utilise longitude/latitude values efficiently in Mysql ? DBMarcos99 2009-09-22T18:34:32Z 2009-09-22T18:34:32Z Fantastic - I've always been a fan of denormalizing data storage where it aids calculation time. thanks! http://stackoverflow.com/questions/1068590/copying-part-of-a-large-file-using-command-line/1068639#1068639 Comment by DBMarcos99 on Copying part of a large file using command line DBMarcos99 2009-09-21T10:15:55Z 2009-09-21T10:15:55Z I modified this slightly to get it to work (and also to ignore case if searching for a text string). I changed the if statement to: if ($_ =~/stevens/i) { $out = 1;} Hope that's of interest to someone.. http://stackoverflow.com/questions/1321635/what-are-the-essential-dba-skills-a-developer-should-learn/1321665#1321665 Comment by DBMarcos99 on What are the essential dba skills a developer should learn? DBMarcos99 2009-08-24T10:56:06Z 2009-08-24T10:56:06Z Thx for your input. I can think of many scenarios where the dba is responsible for query optimization - the developer leaves, the db structure changes, functionality is changed, new indexes are required etc. http://stackoverflow.com/questions/1321635/what-are-the-essential-dba-skills-a-developer-should-learn/1321676#1321676 Comment by DBMarcos99 on What are the essential dba skills a developer should learn? DBMarcos99 2009-08-24T10:53:06Z 2009-08-24T10:53:06Z Some good points there, thx http://stackoverflow.com/questions/1321635/what-are-the-essential-dba-skills-a-developer-should-learn/1321677#1321677 Comment by DBMarcos99 on What are the essential dba skills a developer should learn? DBMarcos99 2009-08-24T10:52:34Z 2009-08-24T10:52:34Z Thx for that answer. http://stackoverflow.com/questions/1321635/what-are-the-essential-dba-skills-a-developer-should-learn/1321643#1321643 Comment by DBMarcos99 on What are the essential dba skills a developer should learn? DBMarcos99 2009-08-24T10:48:26Z 2009-08-24T10:48:26Z I like this answer! (although I can think of scenarios where resource usage isn't an overriding issue) http://stackoverflow.com/questions/1276696/parsing-files-that-use-synonyms/1277032#1277032 Comment by DBMarcos99 on Parsing files that use synonyms DBMarcos99 2009-08-18T10:10:54Z 2009-08-18T10:10:54Z Great! Even I can follow this! http://stackoverflow.com/questions/1281471/slow-mysql-query Comment by DBMarcos99 on Slow MySQL Query DBMarcos99 2009-08-15T08:50:58Z 2009-08-15T08:50:58Z Could you show your sql statement? Also, it may be useful to know the cardinality of the names stored in your table. http://stackoverflow.com/questions/383528/how-can-i-sort-a-hashs-keys-naturally Comment by DBMarcos99 on How can I sort a hash's keys naturally? DBMarcos99 2009-08-15T08:07:34Z 2009-08-15T08:07:34Z Shouldn't it be print $key to list the keys? http://stackoverflow.com/questions/1270055/how-do-you-select-from-mysql-where-last-character-in-a-string-x/1270440#1270440 Comment by DBMarcos99 on How do you select from mysql where last character in a string = x? DBMarcos99 2009-08-14T08:58:44Z 2009-08-14T08:58:44Z What Josh said - sometimes you have to denormalise and add a column to dramatically improve performance. There is a REVERSE function you can use on text fields (for instance if you want to store email addresses but search on the domain eg .com .org etc), but I don't think it would help in terms of performance in the original setup here. http://stackoverflow.com/questions/220645/can-you-recommend-a-mysql-book-for-an-intermediate-developer/220979#220979 Comment by DBMarcos99 on Can you recommend a MySQL Book for an "intermediate" developer? DBMarcos99 2009-08-06T14:49:40Z 2009-08-06T14:49:40Z I have to second this recommendation of Pro Mysql (I even try to market this book on my blog). Apart from being extremely useful, I found this book very readable. Another new book that is getting reviews is the MySql Administrators Bible. http://stackoverflow.com/questions/1204402/how-do-i-ask-for-help-optimizing-fixing-queries-in-mysql/1205290#1205290 Comment by DBMarcos99 on How do I ask for help optimizing & fixing queries in MySQL? DBMarcos99 2009-07-31T13:26:12Z 2009-07-31T13:26:12Z Fair enough, I admit I could have phrased it better. Probably why I didn't end up becoming a document writer :(