woshahua / blog

0 stars 0 forks source link

sql #1

Open woshahua opened 5 years ago

woshahua commented 5 years ago

sql

erd

ddl

question

sqlの内部実行順序

cte使い方, subqueryとの違い

golang

method

func (b box) getSize() int{
  return b.length * b.width
}
// with pointer as receiver 
func (b *box) getSize() int{
  return b.length * b.width
}

ctf