Advertisement
noam76

Appert table

May 14th, 2023
1,170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.22 KB | None | 0 0
  1. // creation table appartement
  2.  
  3. CREATE TABLE appartement (
  4.     id INT AUTO_INCREMENT PRIMARY KEY,
  5.     numero_appart INT NOT NULL,
  6.     nom_locataire VARCHAR(255) NOT NULL,
  7.     prenom_locataire VARCHAR(255) NOT NULL
  8. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement