<Button Grid.Row="1" Content="Load Data" BorderBrush="Black" BorderThickness="10">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Click">
<i:InvokeCommandAction Command="{Binding loadCmd}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</Button>

查询数据库中所有表表名,行数
SELECT a.name, b.rows 
FROM sysobjects AS a INNER JOIN sysindexes AS b ON a.id = b.id
WHERE (a.type = 'u') AND (b.indid IN (0, 1))
ORDER BY b.rows DESC

相关文章:

  • 2022-12-23
  • 2021-09-29
  • 2021-11-12
  • 2022-12-23
  • 2021-11-09
  • 2021-04-04
  • 2022-12-23
  • 2021-12-14
猜你喜欢
  • 2021-07-14
  • 2021-11-27
  • 2022-12-23
  • 2021-06-26
  • 2022-01-23
  • 2022-12-23
  • 2021-09-28
相关资源
相似解决方案