Created
July 6, 2020 13:06
-
-
Save auxten/c032a3a5f60de56059848baed0e12225 to your computer and use it in GitHub Desktop.
This file contains 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
group:Name of the group (imported from SQL) | |
depts = { | |
deptno:number, deptname:string | |
} | |
locations = { | |
locationid:number, state:string | |
} | |
emps = { | |
empid:number, deptno:number, locationid:number, empname:string, salary:number | |
} | |
-- this is an example | |
group: nameOfTheNewGroup | |
A = { | |
a:string, b:number | |
example, 42 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment