2
votes
1answer
15 views
MySQL MyISAM table locking
Does a MySQL MyISAM table gets locked when records are deleted from it?
0
votes
2answers
13 views
Recovery of Data History
i have a table as show
StudentTable
S.no StudentName Marks
1 Stud1 100
2 Stud2 350
3 Stud3 400
Here the marks column for each student will get updated upon each test.
…
0
votes
1answer
19 views
Sync between Sql Server and Mysql Server
Hi,
I have 2 big tables in sql server that i need to sync to mysql.
now, i need that as an ongoing process.
the tables are 1 GB each and getting new/update/delete row every 0.1 second.
Can you …
0
votes
3answers
32 views
Joining two SQL tables with GROUP BY not achieving desired results
For example, I have a shop order database, and two tables in it - ORDERS and ORDERSTATUS.
Table : orders
--------------------------------------------
OrderID | OrderItems | AddedTimeStamp |
…
2
votes
7answers
49 views
row order when inserting multplie rows in MySQL
In PHP, I create and execute SQL queries like the following.
INSERT INTO Table (Column1, Column2, Column3) VALUES
('1', '2', '3'),
('A', 'B', 'C'),
('AA', 'BB', 'CC');
However, the order in which …
1
vote
4answers
63 views
Simple MySQL problem
I'm working on a MySQL database that contains persons. My problem is that, (I will simplify to make my point):
I have three tables:
Persons(id int, birthdate date)
PersonsLastNames(id int, lastname …
0
votes
0answers
26 views
DataSet returns an empty DataTable?
I have a MySql database which I'm modifying using the MySql .NET connector and C#.
The db contains tons of tables. A products_description table was databinded to some controls and it works fine. I can …
1
vote
5answers
31 views
There are two columns in the new table(table1 join table2) which have the same column name, how to get the values of both respectively
select * from table1 join table2 on table1.column3=table2.column4 where ...
...
$row=mysql_fetch_assoc($result);
However, there are two columns in the new table(table1 join table2) which have the …
-2
votes
4answers
41 views
store video in a mysql database, allow user download
I need a multimedia database
I want to be able to upload video directly to the database
Allow user to search database and then download as file when found
shared host with php and mysql
0
votes
1answer
24 views
storing forum posts in mysql
phpBB stores forum post texts in a strange way (like: [BLOB - 115 B]), what is it? How it is done?
1
vote
2answers
46 views
When to fix auto-increment gaps in MYSQL
The database I am working on right now has records being added and removed by the 10s of thousands and because of this there are gaps in the auto-incremented key hundreds of thousands big and …
2
votes
5answers
85 views
MySQL row order for “SELECT * FROM table_name;”
Assume that the following query is issued to a MySQL database:
SELECT * FROM table_name;
Note that no ORDER BY clause is given.
My question is:
Does MySQL give any guarantees to which order the …
8
votes
7answers
88 views
How many significant digits should I store in my database for a GPS coordinate?
I have in my MySQL database both longitude and latitude coordinates (GPS data).
It's currently stored as:
column type
------------------------
geolat decimal(10,6)
geolng decimal(10,6)
…
0
votes
2answers
25 views
mysqli_fetch_assoc empty the data?
i get some data from mysql.
$result = $forum_model->get_info($_SESSION['group_id']);
// step 1
while($user = mysqli_fetch_assoc($result))
{
some code
}
but when i later some lines beneath …
1
vote
1answer
36 views
search canadian province
Hi,
I have an input search on the site and I want to search in the database (MySQL) after province name.
In database I have just the provinces initials - ex: QC for Quebec, AB - Alberta, etc.
The …
