首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > VFP >

[]可以用变量来表示表的名称么

2012-02-19 
[求助]可以用变量来表示表的名称么?比如:tablename新表copy stru to tablename或select * from tablena

[求助]可以用变量来表示表的名称么?
比如:tablename="新表"
  copy stru to tablename
  或
  select * from tablename

这样的!

[解决办法]
tablename="新表"
copy stru to '&tablename.'

select * from '&tablename.'



copy stru to (tablename)

select * from (tablename)

热点排行