gpt4 book ai didi

mysql - SQL : multiple execution

转载 作者:行者123 更新时间:2023-11-29 02:54:39 25 4
gpt4 key购买 nike

我需要一些帮助。我在 mysql 中有这个命令

  SET SESSION group_concat_max_len = 200000

  SELECT CONCAT( 'DROP TABLE ', GROUP_CONCAT(table_name) , ';' ) 
FROM information_schema.tables
WHERE table_schema = 'updates_temp' AND
table_name LIKE 'mg_%';" -s

我怎样才能把它作为一个命令。

因为我有错误

 mg_=`mysql -u$dbUser -p$dbPass -e "SET SESSION group_concat_max_len = 200000 SELECT CONCAT( 'DROP TABLE ', GROUP_CONCAT(table_name) , ';' ) FROM information_schema.tables WHERE table_schema = 'updates_temp' AND table_name LIKE 'mg_%';" -s`

最佳答案

你应该添加一个;

mg_=`mysql -u$dbUser -p$dbPass -e "SET SESSION group_concat_max_len = 200000; SELECT CONCAT( 'DROP TABLE ', GROUP_CONCAT(table_name) , ';' ) FROM information_schema.tables WHERE table_schema = 'updates_temp' AND table_name LIKE 'mg_%';" -s`

关于mysql - SQL : multiple execution,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31914918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com