Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT ClaimID, FileNumber, DateOpened, Division
INTO Bull
FROM Claims
WHERE ClaimID < 10000
SELECT * FROM sysobjects
WHERE Name LIKE 'bull'
ousoonerjoe said:The following example is what I used to look for a temp table:
Code:SELECT ClaimID, FileNumber, DateOpened, Division INTO Bull FROM Claims WHERE ClaimID < 10000 SELECT * FROM sysobjects WHERE Name LIKE 'bull'
create procedure bull
as
select id from anothertable
SELECT * FROM sysobjects
WHERE Name LIKE 'bull'