mirror of
https://github.com/SASPAC/sqlinds.git
synced 2026-03-10 01:38:13 +00:00
The SQLinDS package, version 2.3.3 Package regenerated with the SAS Packages Framework, version 20260216. No functional changes, aesthetic documentation clean up. - File SHA256: `F*6CC51325BDCE164B2E811896DD1C3A6D44242F50CC313D0721350CA49975F628` for this version - Content SHA256: `C*776741E40EB6DCD907640ACA674F092BFAF0F7DE031519B6B453D37F6D6959D9` for this version 3a6a7d1
19 lines
720 B
Markdown
19 lines
720 B
Markdown
## `SQLinDS` - SQL queries in Data Step
|
|
|
|
---
|
|
|
|
The **SQLinDS** package is based on Mike Rhoads' article [*Use the Full Power of SAS in Your Function-Style Macros*](https://support.sas.com/resources/papers/proceedings12/004-2012.pdf).
|
|
|
|
The package allows to write SQL queries in the data step, e.g.
|
|
```sas
|
|
data class;
|
|
set %SQL(select name, age from sashelp.class order by age);
|
|
run;
|
|
```
|
|
SHA256 digest for the latest version of `SQLinDS`: F*6CC51325BDCE164B2E811896DD1C3A6D44242F50CC313D0721350CA49975F628
|
|
|
|
[**Documentation for SQLinDS**](./sqlinds.md "Documentation for SQLinDS")
|
|
|
|
To work with a package use the [**SAS Packages Framework**](https://github.com/yabwon/SAS_PACKAGES/blob/main/README.md "SPFinit").
|
|
|