select
a1.actor_id as id1, a2.actor_id as id2 from actor a1, actor a2
where... |
4 years ago |
select
actor_id as id1, actor_id as id2 from actor a1, actor a2
where... |
4 years ago |
select
actor_id as id1 from actor a1,
actor_id as id2 from actor a2
where... |
4 years ago |
select
actor_id as id1 from actor a1,
actor_id as id2 from actor a2
where... |
4 years ago |
select
actor_id as id1 from actor a1,
actor_id as id2 from actor a2,
where... |
4 years ago |
select
actor_id as id1 from actor i where actor_name = 'Tdv123'
-- actor_id... |
4 years ago |
select
actor_id as id1 from actor i where actor_name = 'Tdv123',
--... |
4 years ago |
select
actor_id as id1 from actor i where actor_name = 'Tdv123',
--... |
4 years ago |
select
actor_id as id1 from actor as i where actor_name = 'Tdv123',
--... |
4 years ago |
select
actor_id as id1 from actor where actor_name = 'Tdv123',
actor_id as... |
4 years ago |
select actor_id as id1 from actor where actor_name = 'Tdv123';
|
4 years ago |
select actor_id from actor where actor_name = 'Tdv123';
|
4 years ago |