Answer the question
In order to leave comments, you need to log in
SELECT * FROM where table like 'i'?
Guys, help with SQL query:
you need to select everything from the table LIKE '%%'
found the table like this:
SELECT * FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME LIKE '%i%'
WITH NewScores AS (
SELECT table_name FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME LIKE 'irina'
)
SELECT * from NewScores;
Answer the question
In order to leave comments, you need to log in
Compose a query manually, automatically go through all the fields with one LIKE% i% operator and also select a table - it will not work.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question