Sobes.tech

What is a view?

Middle
185

How to apply a condition to the result of an aggregate function (for example, to the sum)?

Middle
184

How does a slice grow in Go?.

Middle
183

package main import "fmt" func execute(template string, args ...interface{}) string { return template } func main() { res := execute("mailbox/:mailbox/folder/:folder_id", "inbox", 123) // Output: mailbox/inbox/folder/123 fmt.Println(res) }

Middle
183

What does UNION ALL do and how does it differ from UNION?

Middle
183

If it's not a network request, but reading from a file, how is this handled in the scheduler?

Middle
179

How does the presence of an index affect the speed of inserting into a table?

Middle
179

How to number lines in a query?

Middle
178

What happens if the capacity is insufficient when appending to a sub-slice?

Middle
178

What is a foreign key?.

Middle
176

Tell me about select in Go.

Middle
175

Does each SELECT in a UNION have to have the same number of columns, or can they be different?

Middle
173

What JOINs do you know? List them.

Middle
172

Tell about strings in Go.

Middle
172

How do interfaces help in testing (unit tests)?

Middle
171

What queues exist in the GMP model?

Middle
166

Does a slice always grow by doubling in size?

Middle
166

Tell me about map in Go.

Middle
165

What is the size of int and uint types in Go, and what does it depend on?

Middle
162

What are indexes and what are they used for?

Middle
161
/3