My Books

Text Processing with JavaScript

Solve complex text validation, extraction, and modification problems efficiently in JavaScript.

Modern Async JavaScript

Delve into async features of JavaScript from ES2020 through ESNext. Start building custom asynchronous iterators and generators, and more for fast, lean code.

JavaScript Brain Teasers

Ready to test your JavaScript skills? Challenge yourself with these brain-teasing puzzles, supercharge your learning journey, and emerge as a JavaScript pro.

Making the Result of a Query Easier to View in Mysql Client.

Learn how view query results easier in mysql client.

To make any query’s results easier to view in the MySQL client, you can add the G parameter. For example:

SHOW TABLE STATUS G

By using this flag the table of results will be displayed vertically instead of horizontally and you don’t have to use a terminating semicolon anymore, because the G ends the command.

Have your say