How to run concurrent two querys

How to run two different table query in concurrently .

Use 2 different go routines.

This can be done .

Do you have any sample code

go func() {
  // do query 1
}()

go func() {
  // do query 2
}()

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.