Created
May 16, 2025 14:00
-
-
Save solanoize/2ea39fdb873b39805a426d5bd3beb4ab to your computer and use it in GitHub Desktop.
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
CREATE TABLE `sales_db`.`owner` ( | |
`id` INT NOT NULL AUTO_INCREMENT , | |
`username` VARCHAR(40) NOT NULL , | |
`password` VARCHAR(200) NOT NULL , | |
`fisrtName` VARCHAR(40) NOT NULL , | |
`lastName` VARCHAR(40) NOT NULL , | |
PRIMARY KEY (`id`), | |
UNIQUE (`username`)) ENGINE = InnoDB; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment