关于mysql:<操作符是PowerShell Error的保留字吗

'<' operator is reserved PowerShell Error

我试图使用PowerShell中的mysql -u root -p Tutorials < tut_backup.sql来恢复MySQL数据库中的表,但它给了我The '<' operator is reserved for future use.错误。有绕道吗?


怎么样

1
 & cmd.exe /c"mysql -u root -p Tutorials < tut_backup.sql"


试试这个:

1
2
3
mysql -u root -p
(prompts for password)
source tut_backup.sql

贷款归沃里克所有。


您可以这样输入内容:

1
Get-Content tut_backup.sql | mysql -u root -p Tutorials