Created
December 3, 2024 07:08
-
-
Save Mike-Schvedov/0f7553c064998c63962b3e52c5f1a450 to your computer and use it in GitHub Desktop.
Drop Old Table, Create New One
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker exec -i mysql-container mysql -u mike -pmike1234 mydatabase -e " | |
DROP TABLE IF EXISTS users; | |
CREATE TABLE users (id VARCHAR(255) PRIMARY KEY, score INT);" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment