gforce8856@yahoo.com Posted August 20, 2007 Share Posted August 20, 2007 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. Quote Link to comment Share on other sites More sharing options...
lead2gold Posted August 20, 2007 Share Posted August 20, 2007 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. Quote Link to comment Share on other sites More sharing options...
wsantos Posted August 20, 2007 Share Posted August 20, 2007 another solution would be to press the Up arrow Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.