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.
シェル スクリプト (つまり、sh)を使用して SQL クエリの結果を取得する方法はありますか。テーブルから id を選択するとします。結果は id=10 です。次に、 ID の結果を変数 var=10 に格納できるはずです。とはいえ、やりたいことができていない。私はUNIXに取り組んでいます。
前もって感謝します!!
これを試してください、
#/ビン/バッシュ
var=` mysql -u root -pPassword databasename -e 'select id from table' `
エコー $var