Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE TABLE Employees (EmployeeID INTEGER PRIMARY KEY autoincrement,Name text, DateOfBirth text, AddressID INTEGER, Salary REAL, DepartmentID INTEGER, Occupation text, Manager INTEGER);
- CREATE TABLE Departments( DepartmentID INTEGER PRIMARY KEY autoincrement, DepartmentName text);
- CREATE TABLE Cities( CityID INTEGER PRIMARY KEY autoincrement, CityName text);
- CREATE TABLE Adress(AdressID INTEGER PRIMARY KEY autoincrement, Text text, CityID INTEGER);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement