Answers for "check sql server query to value exists"

SQL
0

t-sql check if data exists

if exists(select 1 from INFORMATION_SCHEMA.TABLES T 
              where T.TABLE_NAME = 'Bookings') 
begin
    drop table Bookings
end
GO

create table Bookings(
  FlightID    int identity(1, 1) primary key,
  TicketsMax    int not null,
  TicketsBooked int not null
)
GO

insert  Bookings(TicketsMax, TicketsBooked) select 1, 0
insert  Bookings(TicketsMax, TicketsBooked) select 2, 2
insert  Bookings(TicketsMax, TicketsBooked) select 3, 1
GO

select * from Bookings
Posted by: Guest on June-03-2020
0

sql value exists in column

SELECT * FROM table_name WHERE col_name = my_value;
SELECT * FROM table_name WHERE col_name LIKE '%my_value%';
Posted by: Guest on July-08-2021

Code answers related to "check sql server query to value exists"

Code answers related to "SQL"

Browse Popular Code Answers by Language