Dear All,
I have a select statement as follows:
select * from tableA tableB where TableA.field1 = "test"
I do not understand Where is the meaning of TableA TableB .
There is no comma between
TableA and Table B. I guess it may be some kind of
Su...
more >>
Hi All
i have one query
i have information about some people , these people have mulitple
addresses(2-4) and multiiple phone numbers(3-10).
I have created table like following
people_table
peopleid , name , age , profession , sex
Address_table
address_Id,peopleid , address
...
more >>
UPDATE TTEMP_BC
SET FDDATE=B.FDDATE
FROM TTEMP_BC A INNER JOIN
TABSENSI_M B ON A.IDABSEN = B.IDREC
go
I execute the statement, But why will it cause any records in TTEMP_BC is
deleted? Can u give me the reasons??
thx
...
more >>
I have a program that needs to manipulate multiple rows which all share
the same value in a particular column. It will run approximately 3
queries on a single table and based on those queries it will update
various values in the row.
My question is if I put all three of these queries and t...
more >>
Hello,
Please help in the following problem:
I have three tables: Stores (with StoreId as PK), Categories (with
CategoryId as PK) and CategoriesOnStock (with StoreId+CategoryId as PK).
I would like to select all such combinations of Stores and Categories that
contain values (of columns: MinLe...
more >>