We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It is impossible to select a field name that contains a space.
The text was updated successfully, but these errors were encountered:
If the field name contains spaces, it must be enclosed in quotation marks. Quotation marks depend on the database driver.
SQLite 3 is double quotes (") and backquotes (`).
echo "i d,n a m e\n1,Alice"| trdsql -driver sqlite3 'SELECT "i d", "n a m e" FROM -'
and
echo "i d,n a m e\n1,Alice"| trdsql -driver sqlite3 'SELECT `i d`, `n a m e` FROM -'
postgres is a double quotation mark (").
echo "i d,n a m e\n1,Alice"| trdsql -driver postgres 'SELECT "i d", "n a m e" FROM -'
mysql is a backquotes (`).
Sorry, something went wrong.
No branches or pull requests
It is impossible to select a field name that contains a space.
The text was updated successfully, but these errors were encountered: