Difference between revisions of "Select"

From wikieduonline
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 24: Line 24:
 
* [[MySQL]]: <code>[[select user]] FROM [[mysql.user]];</code>
 
* [[MySQL]]: <code>[[select user]] FROM [[mysql.user]];</code>
  
 +
 +
[[jq]]:
 
* <code>[[jq]] '.[] | [[select]](.color=="blue")' your_json_file.json</code>
 
* <code>[[jq]] '.[] | [[select]](.color=="blue")' your_json_file.json</code>
 +
* <code>cat file.txt | jq '.Quotas[] | select(.QuotaName | [[contains]]("G and VT")) | {QuotaName, Value, QuotaArn, QuotaCode, Unit}'</code>
  
  

Latest revision as of 14:20, 22 May 2024

select 
select count
select distinct


PostgreSQL:


SELECT * FROM your_table_name;
ERROR: permission denied for table your_table_name




jq:

  • jq '.[] | select(.color=="blue")' your_json_file.json
  • cat file.txt | jq '.Quotas[] | select(.QuotaName | contains("G and VT")) | {QuotaName, Value, QuotaArn, QuotaCode, Unit}'


Related terms[edit]

See also[edit]

Advertising: