Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
3 answers
122 views

I have a large MySQL table in phpMyAdmin, and I want to clear all data in a specific column. I know how to do it using: UPDATE table_name SET column_name = NULL; Or by dropping and re-adding the ...
ADIL RADIDI's user avatar
3 votes
1 answer
63 views

My host (Fastcomet) just upgraded servers, and moved from MySQL to MariaDB. Now I have SQL errors - probably due to slight differences in syntax. I strugled to get it working under MySQL - and have ...
FJA's user avatar
  • 43
-3 votes
0 answers
74 views

I don't know how to convert Java string numbers to insert them into MySQL table. The field 'peso' in MySQL is declared as float. public void Conferma() { // Creo un oggetto Prodotto ...
Albert's user avatar
  • 1
-4 votes
0 answers
84 views

I have a shopping script where customers can add items to their cart and then view their cart. But i don't know how to make the checkout page to be able to SAVE THE SESSION items (CART DATA) into the ...
Bubu's user avatar
  • 21
-2 votes
0 answers
24 views

In my bash script below I am able to load data into mysql, but somehow some fields are not correctly captured. #!/bin/bash DB_USER="myuser" DB_PASS="mypass" DB_NAME="aws_db&...
Zilore Mumba's user avatar
  • 1,588
0 votes
0 answers
50 views

I'm trying to update the password for the user account in a MySql database managed through PHPMyAdmin. I'm logged in as root and I'm changing the password through User accounts/change password. Here's ...
B. Allred's user avatar
  • 459
-4 votes
0 answers
38 views

When I changed my development machine to a Mac, it created case sensitivity problems with the database on my XAMPP server. I was attempting a solution offered here: MySQL case sensitivity table name ...
Charles Looker's user avatar
0 votes
0 answers
34 views

I have a Flutter app live on the App Store with ~400 users and a Node.js backend running on AWS EC2 with MySQL. I want to add new features safely without breaking the app for current users. ...
Sunshine offical's user avatar
-1 votes
0 answers
30 views

I had to restore the MySQL files on Ubuntu from a system backup. Unfortunately mysqld will not start. I chowned the directory to mysql:mysql but I still get this error: `Defined-By: systemd Support: ...
Wt Riker's user avatar
  • 620
-2 votes
0 answers
35 views

I am creating a temp table in a stored procedure to hold the results of a CTE query. Without the temp table the query works fine. The code is below. I keep getting an error at the INSERT INTO line - ...
tom's user avatar
  • 1
0 votes
0 answers
96 views

I have a PHP table in this format: $Output = array ( 'strSMD' => array ( 'name' => 'blabla', 'server' => 'https:/blabla.com', 'profile' => 'https://blabla.com/...
Edward's user avatar
  • 1
-3 votes
1 answer
57 views

i have created a mini python tool to backup using mysqldump import os import subprocess from datetime import datetime from dotenv import load_dotenv,dotenv_values load_dotenv(dotenv_path="./...
shadowy figure's user avatar
-1 votes
0 answers
52 views

I am trying to set up a MySQL InnoDB Cluster for High Availability in Docker Compose. Below are the files. docker compose version: '3' services: mysql-server-1: container_name: mysql-server-1 ...
shrikant.sharma's user avatar
2 votes
1 answer
74 views

I need a little help with a select query please. I need to pull 3 records at a time from a table to display on a form where people can sign up to one or any of the three matches displayed on the form ...
Tilly's user avatar
  • 81
1 vote
3 answers
64 views

I have to validate a software license based on the concurrent resources concurrently used. I have this MYSQL table: resource-id from to 1 13/01/2026 09:00 13/01/2026 20:30 1 14/01/2026 18:00 14/01/...
Tobia's user avatar
  • 9,667

15 30 50 per page
1
2 3 4 5
43907