我已经在工作文件中制作了一个.txt文件,但在我编写该文件时不起作用 this
SELECT
COUNT(DISTINCT [a])
FROM
(SELECT Column1 [a]
FROM TableA
UNION ALL
SELECT Column2
FROM TableA
) [x]
答案 0 :(得分:0)
send_file
要求将目的地作为第一个参数(例如文本通道对象)传递。
您需要以某种方式在readlist
中获得通道对象,最简单的方法可能是在pass_context=True
批注中使用command
并为上下文对象添加一个参数到readlist
通过了。例如
@client.command(pass_context=True)
async def readlist(ctx):
# you can now get the channel the command was called in with ctx.message.channel