Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经进行了彻底的研究,但似乎没有办法使用PROC SQLor轻松做到这一点PROC SORT。
PROC SQL
PROC SORT
目前,我必须列出除我不想要的变量之外的所有变量,因为我的表包含 50 个变量,所以这相当乏味。有没有人有什么建议?
过程 sql; 从dictionary.columns中选择名称到:以''分隔的列 其中 libname = 'LIB' 和 memname = 'TABLE' 并命名 ne 'COLUMN_TO_BE_EXCLUDED'; 退出; 过程排序 数据 = lib.table; 由 &columns; 跑;
当我使用 Actionbarsherlock
public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: this.finish();