Select Into is Create As Select

Here's some example SQLite code:
create table results as
select computername, count(*), status, notes from eventviewer
group by computername, status, notes
order by computername, status, notes

Leave a Reply