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