Jump to content

Easy question


gforce8856@yahoo.com

Recommended Posts

I am new to MySQL, but have a question that has caused me a problem more than once.

 

When using the command line client and having typed in the info for a create table (say 20 fields) hitting enter after every field, and I cause a syntax error is there any way to just recall all of the information while fixing the syntax error or do I have to enter everything again?

 

Thanks for any help.

Link to comment
https://forums.phpfreaks.com/topic/65847-easy-question/
Share on other sites

you should pre-type your command in a file,

you can then execute your statement that way.  If there is a problem, you simply just edit your file.

 

ie:

$> echo "SELECT * FROM mytable;" >cmd.sql

 

Then from your command prompt:

$> sql -u <username> -p < cmd.sql

 

but to answer your question: you are correct in thinking there is no other way to recall the last information you typed.

 

Link to comment
https://forums.phpfreaks.com/topic/65847-easy-question/#findComment-329082
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.