This is version . It is not the current version, and thus it cannot be edited.
Back to current version   Restore this version

MySQL Database#

"mysql" is the name of the command line utility.

“MySQL Workbench” is the gui utility

“root” is the top level user.

mysql -h <host> -u <USER> -p<PASSWORD> <DBNAME>

mysql commands#

status;

source <filename>

show databases;

use <database>

show tables;

use <DBNAME>;

exit

drop database <dbname>;

create database <dbname>;

describe <table>;

show create table <table>;

Add new attachment

Only authorized users are allowed to upload new attachments.
« This particular version was published on 03-Jun-2016 14:20 by BlakeMcBride.