baza
This commit is contained in:
parent
f869e9882d
commit
729b040817
|
@ -0,0 +1,14 @@
|
|||
CREATE TABLE Persons (
|
||||
PersonID int primary key auto_increment,
|
||||
LastName varchar(255),
|
||||
FirstName varchar(255),
|
||||
Email varchar(255),
|
||||
Subject varchar(255),
|
||||
Path varchar(255)
|
||||
);
|
||||
|
||||
INSERT INTO Persons (LastName, FirstName, Email, Subject, Path)
|
||||
VALUES
|
||||
('Smith', 'John', 'john.smith@example.com', 'Math', '/path/to/johnsmith'),
|
||||
('Doe', 'Jane', 'jane.doe@example.com', 'Physics', '/path/to/janedoe'),
|
||||
('Brown', 'Charlie', 'charlie.brown@example.com', 'Chemistry', '/path/to/charliebrown');
|
Loading…
Reference in New Issue