我想构建一个小应用程序;它必须有某种可能性来加载文件。现在我只是将路径复制到应用程序中,但我确实希望建立一种可能性
有没有办法完成至少其中一项要求?因为我不想自己创建非本机文件打开对话框。
答案 0 :(得分:1)
您可以使用tkinter的文件打开对话框。
要获取文件名,代码将为:
---Table creattion script
create table #t
(
teamid int,
teamname varchar(100)
)
insert into #t
select '1','AFC Wimbledon'
union all
select '2','Angers'
union all
select '3 ','Ards'
--final query
SELECT teamname as firstname,
'player'+ cast(n as varchar(5)) AS [surname],
teamid
FROM
#t
CROSS APPLY
(select n from numbers nmbr where nmbr.n<=20) b
order by teamid