Reputation: 65
i'm trying to do some practices on command line..
as you see in the pic the command is not triggering. i'm pressing Enter. (as described in practicing book)
Upvotes: 1
Views: 366
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
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