declare temp table (ns varchar(3));
select * from temp |
2 months ago |
create table temp (ns varchar(3));
select * from @temp |
2 months ago |
create table @temp (ns varchar(3));
select * from @temp |
2 months ago |
declare @temp table (ns varchar(3));
select * from @temp |
2 months ago |
declare @temp table (ns varchar(3));
select * from @temp |
2 months ago |
declare @temp table (ns smallint(4));
select * from @temp |
2 months ago |
create table @temp (ns smallint(4));
select * from @temp |
2 months ago |
create table @temp (ns smallint(4));
insert into @temp values (0),(14); |
2 months ago |
create table @temp (ns: smallint(4));
insert into @temp values (0),(14); |
2 months ago |
select * from watchlist
limit 10 |
2 months ago |