answersLogoWhite

0

mujhay pata hota to main is web par kion ata bhai

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Which would be the appropiate expression to count the number of records using the Firstname Field?

=Count([FirstName]);]


How do you select all the records from a table named Persons where the value of the column FirstName is Peter?

SELECT * FROM Persons WHERE FirstName='Peter'


With SQL how can you delete the records where the FirstName is Peter in the Persons Table?

To delete records where FirstName is Peter in the Persons Table, you can use the following SQL query: DELETE FROM Persons WHERE FirstName = 'Peter';


How do you select a column named FirstName from a table named Persons?

In order to select a column named FirstName from a table named Persons, you should run the following MySQL query:SELECT FirstName FROM Persons


What is the firstname of Mozart?

Amadaeus


How do you select all the records from a table named Persons where the value of the column FirstName starts with an a?

To select all records from the "Persons" table where the value of the column "FirstName" starts with 'a', you can use the following SQL query: SELECT * FROM Persons WHERE FirstName LIKE 'a%'; This query will retrieve all records where the "FirstName" column starts with the letter 'a'.


What is the appropriate expression to count the number of records using the firstName field in access?

=Count([FirstName]) By Kole G


How can you return all the records from a table named Persons sorted descending by FirstName?

SELECT * FROM Person ORDER BY FirstName DESC


What is the firstname of pop artist Sandoval?

john ---- ---- ----


How do you write signature with a PMP?

FirstName LastName, PMP


What is the average length of an average firstname?

Five letters long.


How do you concatenate a field in Access?

You use the & operator. So you could have something like a field for a firstname and a field for a surname that you want to bring together with a space between them. You could do it like this: Firstname & " " & Surname