1
vote
Re-installing MYSQL(windows) - How to get to the old data with the new install?
For MyISAM tables you can generally get away with copying them across. (Whilst the server's stopped, obviously.) For InnoDB, it can work, but you'll have to have the same basic block size settings. …
2
votes
MySql: MyISAM vs. Inno DB!
MyISAM supports (non-standard-SQL) fulltext indexing which InnoDB still does not. This is the only reason we ever use MyISAM today.
…
8
votes
Using varchar instead of date field types in MySQL
Unless it really is acting primarily as a string — say, it wants to preserve date formatting style, locale-named months, named timezones etc. and doesn't care about being computable — no, …
2
votes
MySQL strip non-numeric characters to compare
There's no regexp replace, only a plain string REPLACE().
MySQL has the REGEXP operator, but it's only a match tester not a replacer, so you would have to turn the logic inside-out:
…
4
votes
Can I run an HTTP GET directly in SQL under MySQL?
No, thank goodness — it would be a security horror. Every SQL injection hole in an application could be leveraged to start spamming connections to attack other sites.
You could, I suppose, …
-1
votes
scripts embedded in images
Are you talking about the issue where IE will interpret an image with HTML tags in it as being an HTML page, thus allowing HTML and script injection from user-submitted images?
(The bug be …
1
vote
Sql Ansi to manage DateTime values
According to SQL:1999, date1-date0 should give you a value of type INTERVAL, a struct from which you should be able to extract YEAR, MONTH, DAY, etc.
I've never used it and I don't think it …
0
votes
MySQL GROUP_CONCAT escaping
Right now I'm allowing any character. I realize a pipe would be unlikely to show up, but I'd like to allow it.
How about a control character, which you should b …
0
votes
There are a method to paging using ANSI Sql only?
No official way, no.*
Generally you'll want to have an abstracted-out function in your database access layer that will cope with it for you; give it a hint that you're on MySQL or PostgreSQ …
1
vote
set row equal to other row in mysql?
insert into page (id, title, body, page, visible) Select 2, title, body, page, visible
Can be done (in MySQL only) without the DELETE by using an ON DUPLICATE K …
1
vote
php and mysql not showing data, not entering foreach loop
if (!(isset($pg))) {
$pg = 1;
}
How is $pg going to get set? You don't appear to be reading it from $_GET. If you're relying on register_globals: don't d …
3
votes
Determining unread items in a forum
The traditional solution is a join table something along the lines of:
CREATE TABLE topicviews (
userid …
1
vote
Help with SQL query.
SELECT ... LIMIT isn't supported in subqueries, I'm afraid, so it's time to break out the self-join magic:
SELECT article.*
FROM article
JOIN (
SELECT a0.category_id AS id, MIN( …
0
votes
Special order by on SQL query
As per John's comment, but with LIMIT syntax instead (ROW_NUMBER/OVER doesn't work in MySQL and besides LIMIT is much easier to read):
(
SELECT position, name FROM items
ORD …
1
vote
MySQL SELECT statement using Regex to recognise existing data
can this cleaning be done in a SQL statement
Yes, you can write a sto …
