Skip to content

Instantly share code, notes, and snippets.

@karfam
Last active November 11, 2015 19:50
Show Gist options
  • Save karfam/49be28a49d43c7532b6e to your computer and use it in GitHub Desktop.
Save karfam/49be28a49d43c7532b6e to your computer and use it in GitHub Desktop.
-- this is an example
group: teo
STUDENT = {
Id:number, Name:string ,Age:number
1,'Nikos', 32
2,'Takis',31
3,'Kostas',42
4,'thodoros',32
5,'argiris',50
6,'takis',25
7,'mitsotakis',28
}
BOOK = {
ISBN:number, Title:string, Authors:string, Publisher:string
1232,'apanta','takisgeorgiou' ,'Elsevier'
2324,'tselemente','nikosnikolaou' ,'Elsevier'
3431,'tropoinapetixeis','takisgeorgiou','PrenticeHall'
4324,'timoykaneis','nikosnikitas' ,'Elsevier'
5432,'sextips','georgegeorgioy' ,'HafPublish'
6344,'elaedonadeis','takisgeorgiou','PrenticeHall'
7543,'taimiaoimistikoifakeloi','antonistakis' ,'HafPad'
}
LOAN = {
Id:number,ISBN:number,Date:number
1,6344,2016
2,1232,2015
2,2324,2014
2,4324,2015
3,5432,2014
4,4324,2015
5,6344,2014
6,7543,2015
7,1232,2013
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment