Tagged Questions
The mysql-5.0 tag has no wiki summary.
6
votes
3answers
2k views
What is the best way to store a URL value using MySQL?
I was thinking of storing URL values in my database but I know some URL's sometimes get ridiculously long. I think my MySQL Database is Version 5.0.
I was thinking of using.
VARCHAR(255)
but this ...
3
votes
2answers
5k views
MySql FLOAT datatype and problems with more then 7 digit scale
We are using MySql 5.0 on Ubuntu 9.04. The full version is: 5.0.75-0ubuntu10
I created a test database. and a test table in it. I see the following output from an insert statement:
mysql> CREATE ...
1
vote
3answers
30 views
Error in SQL Syntax (MYSQL 5.0)
Does anybody know what is wrong in this MYSQL 5.0 syntax?
CREATE TABLE IF NOT EXISTS target (
_id int(11) NOT NULL AUTO_INCREMENT,
time timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
map_id ...
1
vote
1answer
95 views
Inserting integer and datetime from PHP to MySQL 5.0 db error
I have tried to find out what's wrong.
The table is conditions_loop. One column is condition_id, and the other one is a datetime type.
the code is this
$dt = date("Y-m-d H:i:s");
...
1
vote
4answers
1k views
SQL tutorial question: Listing the first value from a three-way joined table query
Ugh ok I'm terrible at explaining things, so I'll just give you the quotes and links first:
Problem 4b (near bottom):
4b. List the film title and the leading actor for all of 'Julie Andrews' ...
0
votes
2answers
126 views
Error 1045 access denied for user 'ODBC'@'localhost' (using password no)
I am absolutely new to this area. I am getting the following difficulty:
When I try the mysql command on the shell, Start->cmd->mysql:
Error 1045 (28000): Access denied for user 'ODBC'@'localhost' ...
0
votes
1answer
21 views
Multiple results from single table in mysql
I have a table in my database with columns:
Lead_id INT(11) PRIMARY KEY NOT NULL
user_id INT(11)
lead_status ENUM('active','win','loss')
below sample data:
Lead_id user_id lead_status
1 ...
0
votes
3answers
237 views
MySQL 5.1 database export fails while importing into MySQL 5.1
I am having a particularly weird problem putting the data into my production server. My test server runs MySQL 5.1.41. I export the database (tried both via mysqldump and PHPMyAdmin) and then try to ...
0
votes
1answer
171 views
0
votes
1answer
216 views
Proper syntax for MySQL 5.0.x FEDERATED table creation?
So I'm trying to create a federated table using the syntax from the docs. Following this, I've created a table like so:
CREATE TABLE `federated_table` (
`table_uid` int(10) unsigned not null ...
0
votes
3answers
1k views
Quick SQL Question: SQLzoo tutorial problem
Problem 2b goes as follows:
2b. For each subject show the first year that the prize was awarded.
nobel(yr, subject, winner)
My solution was this:
SELECT DISTINCT subject, yr
...