python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Table is shown only when querying using databasename.tablename
Using mysql workbench. the database is called accountdb. I just imported a table called "keys" (should've used a better name).
The table is there when I query this:
show tables;
When query...
johnz
Votes: 0
Answers: 0
Finding Max of Max mysql
I am using a table called covid_vaccinations.
To briefly explain about the table, it tracks down all the countries' vaccination completion by every single day from Feb xx, 2020 to Jan XX, 2022.
The n...

nivek
Votes: 0
Answers: 1
Is it possible to automatically update datetime for modify_on for any changes in table except few columns
ALTER TABLE app_user
add column modifyon datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
It works but for all columns and I want to exclude few column such as lastlogin, InvalidTryCount...
Vivek
Votes: 0
Answers: 0
Trying to load data into mysql databse but keep getting error message
DatabaseError: (mysql.connector.errors.DatabaseError) 2005 (HY000): Unknown MySQL server host '@127.0.0.1' (11003)
(Background on this error at: https://sqlalche.me/e/14/4xp6)
engine = create_engine('...
mcq7
Votes: 0
Answers: 0