MySql: Revision history

From RCATs

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

9 July 2023

  • curprev 15:1915:19, 9 July 2023Ali3nw3rx talk contribs 660 bytes +48 No edit summary
  • curprev 15:1715:17, 9 July 2023Ali3nw3rx talk contribs 612 bytes +612 Created page with "<syntaxhighlight lang="powershell"> ## Connect to the MySQL server. There should not be a space between the '-p' flag, and the password. mysql -u <user> -p<password> -h <IP address> ## Show all databases. show databases; ## Select one of the existing databases. use <database>; ## Show all available tables in the selected database. show tables; ## Show all columns in the selected database. show columns from <table>; ## Show everything in the desired table. select..." Tag: Visual edit