Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过shell脚本(即sh)检索SQL查询结果。假设,从表中选择id;结果是 id=10。然后我应该能够将 ID 的结果存储到某个变量 var=10中。但是我无法做我想做的事。我在 UNIX 上工作。
提前致谢!!
请试试这个,
#/bin/bash
var=` mysql -u root -pPassword 数据库名 -e '从表中选择 id' `
回声 $var