Questionaries.org
Login
Register
Questions
Unanswered
Tags
Users
Ask a Question
Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.
Let us know at info@questionaries.org
How would you write a query to select all teams that won either 2, 4, 6 or 8 games?
6
like
0
dislike
Hello
How would you write a query to select all teams that won either 2, 4, 6 or 8 games?
please reply me. i am waiting for your reply.
Thanx
asked
1 year
ago
by
DBA-boss
(
120,990
points)
website
mysql
2 Answers
1
like
0
dislike
Best answer
SELECT team_name FROM teams WHERE team_won IN (2, 4, 6, 8)
answered
1 year
ago
by
eagles11
(
179,830
points)
0
like
0
dislike
select * from table name where filedname in(2,4,6,8)
answered
5 months
ago
by
anonymous
Related questions
6
like
0
dislike
1
answer
How would you select all the users, whose phone number is null?
asked
1 year
ago
by
DBA-boss
(
120,990
points)
mysql
website
query
4
like
0
dislike
1
answer
How would you change a column from VARCHAR(10) to VARCHAR(50)?
asked
1 year
ago
by
eagles11
(
179,830
points)
website
xml
mysql
6
like
0
dislike
1
answer
What does this query mean: SELECT user_name, user_isp FROM users LEFT JOIN isps USING (user_id)
asked
1 year
ago
by
DBA-boss
(
120,990
points)
mysql
website
php
5
like
0
dislike
1
answer
How do you convert a string to UTF-8?
asked
1 year
ago
by
eagles11
(
179,830
points)
seo
website
mysql
5
like
0
dislike
1
answer
How can you see all indexes defined for a table?
asked
1 year
ago
by
eagles11
(
179,830
points)
sql
mysql
website