/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/pattern_in_expr/mysql/query.sql
11 строк
336 B
Kyle Gray
test(endtoend): Split shema and queries (#2803)
04 окт 2023, 19:13
Не верифицирован
04 окт 2023, 19:13
5664224
Код
Авторство
О чём код?
/* name: FooByBarB :many */ SELECT a, b from foo where foo.a in (select a from bar where bar.b = ?); /* name: FooByList :many */ SELECT a, b from foo where foo.a in (?, ?); /* name: FooByNotList :many */ SELECT a, b from foo where foo.a not in (?, ?); /* name: FooByParamList :many */ SELECT a, b from foo where ? in (foo.a, foo.b);