ceylan
ceylan

Reputation: 65

mysql command line help (windows)

i'm trying to do some practices on command line..

enter image description here

as you see in the pic the command is not triggering. i'm pressing Enter. (as described in practicing book)

Upvotes: 1

Views: 366

Answers (3)

dtbarne
dtbarne

Reputation: 8190

Use ; as stated.

This is a good example of why it is good practice to always end your SQL statements with a semicolon. It's a good habit to get into.

Upvotes: 1

Rufinus
Rufinus

Reputation: 30721

just type

;

at the end of the line :-)

Upvotes: 0

Michael Berkowski
Michael Berkowski

Reputation: 270599

End a command with a semicolon ;

CREATE DATABASE deneme;

As long as it keeps printing the -> prompt on new lines, it is expecting the ; terminator.

Upvotes: 2

Related Questions