Tagged Questions
The mysql4 tag has no wiki summary.
7
votes
4answers
10k views
MySQL Alter syntax to drop a column if it exists
What is the syntax to drop a column in a MySQL table, if that column exists on version 4.0.18?
3
votes
2answers
1k views
MySQL And C applications
When building a application that accesses a MySQL database on linux using C/C++ i have to dynamically link into the mysql client library. Is there a way in which i can statically link the application ...
2
votes
2answers
259 views
C MySQL client library behaviour
I have a client application that connects to the MySQL database 4 server using stock libraries on SuSE SLES 9. However, at times when processing a particular reset set from the server, iterating ...
1
vote
3answers
64 views
Summing a comma separated column in MySQL
I'm writing a query that selects data from one table into another, one of the columns that needs to be moved is a DECIMAL column. For reasons beyond my control, the source column can sometimes be a ...
1
vote
4answers
111 views
Is <input> tabular data?
From a standpoint of using XHTML 1.0 Strict as DOCTYPE -- would the input tag in XHTML be considered tabular data?
And if not, could someone please give me some good advise on valid XHTML (Strict ...
1
vote
1answer
40 views
Create table trouble in MySQL 4.1
The column which defined with char type in a create table sentence is defined as varchar()
It was defined as char(8) convert to varchar (8) in desc on DB.
char(1) -> char(1) on same DB
When it ...
1
vote
2answers
240 views
PHP: keep track of requests by user and by product brand?
I have a MySQL table that has price requests in it, it has date, first, last, and product_id fields. The product brand can be found from the product table from the product_id.
Given a date range, ...
1
vote
3answers
869 views
MySQL: select distinct names for each date?
Say I want to select rows with a date range or date_feild > 2009-06-01 && date_field < 2009-07-01. and I want to select the first_name_field and last_name_field but I only want the same ...
1
vote
1answer
676 views
Fastest way to join mysql 4.0 data from multiple tables?
I have 3 mysql 4.0 tables: all have fields ID(int), type(int) and another field, value which is either varchar(255), tinyint or int.
I need to write them all out and I end up getting three ...
1
vote
1answer
2k views
Drop constraints only if it exists in mysql server 5.0
i want to know how to drop a constraint only if it exists. is there any single line statement present in mysql server which will allow me to do this.
i have tried the following command but unable to ...
1
vote
3answers
4k views
Difference between php 4 and php 5?
I'm in search of the web hosting space, and got to know the PHP version is 4.3 and MySQL Version 4.1
But i developed my application in MySQL version 5.x and PHP version 5.x
Can anyone give me the ...
1
vote
2answers
209 views
MySQL: Migrating Queries from v4 to v5
When migrating a project from MySQL 4 to MySQL 5, what are the primary things I need to address in order to ensure queries remain compatible?
In general things should be fine, but I know that some ...
0
votes
0answers
265 views
Error 1054 - unknown column in 'field list'
I have an error in the following query:
select vfget(options,'mk') as mk_, count(*) from
(select vfget(options,'mk') from mlist_blinkogold_games_new
where vfget(options,'sub_mk')='alpha'
UNION ALL
...
0
votes
1answer
22 views
Is it possible to create a transactional merge table in mysql?
MySQL docs say that tables that use the MERGE storage engine can only union underlying MyISAM tables, which don't allow use of transactions.
Is there an alternative or workaround so that I can have a ...
0
votes
2answers
78 views
Not your usual MySQL4 + ODBC connection issue
I've got a problem with ODBC that has me stumped, and I can't find an answer anywhere that addresses my problem. Short version: I can't connect to my MySQL4 installation on Ubuntu Jaunty from my ...
0
votes
1answer
29 views
Is it possible to have a mysql table refer to a table in a foreign database?
Is it possible to use a mysql table transparently though the table is an alias for a table in a foreign database?
0
votes
3answers
2k views
Need MySQL 4 to ignore ALTER TABLE errors
I have a MySQL script which is executed automatically under certain conditions. That script executes an ALTER TABLE command, because that column is needed in the database, but it may or may not have ...
0
votes
4answers
1k views
updating primary key of master and child tables for large tables
I have a fairly huge database with a master table with a single column GUID (custom GUID like algorithm) as primary key, and 8 child tables that have foreign key relationships with this GUID column. ...