Categorygithub.com/phpCoder88/csv-searcher
module
1.0.2
Repository: https://github.com/phpcoder88/csv-searcher.git
Documentation: pkg.go.dev

# README

Go Report Card codecov

Курсовая по курсу Лучшие практики разработки Go-приложений

Query syntax

SELECT select_expr [, select_expr ] ... FROM table_references [, table_references ] ... [ WHERE where_condition ]

The most commonly used clauses of SELECT statements are these:

  • Each select_expr indicates a column that you want to retrieve. There must be at least one select_expr.
  • A select list consisting only of a single unqualified * can be used as shorthand to select all columns from tables, but all tables must have the same columns and column order
  • table_references indicates the table or tables from which to retrieve rows
  • The WHERE clause, if given, indicates the condition or conditions that rows must satisfy to be selected. where_condition is an expression that evaluates to true for each row to be selected. The statement selects all rows if there is no WHERE clause.

# Packages

No description provided by the author