Название: Запрос для выборки телефонов
Отправлено: poxy. от 22 Апреля 2013, 08:45:54
Подскажите пожалуйста для выборки номеров телефона абонентов. И заодно спрошу, массовую рассылку смс пока не планируется реализовать?
Название: Re: Запрос для выборки телефонов
Отправлено: stix от 22 Апреля 2013, 08:48:49
http://billing.org.ua/nodeny/153
Название: Re: Запрос для выборки телефонов
Отправлено: poxy. от 22 Апреля 2013, 09:45:55
спс, но нужно для Н+
Название: Re: Запрос для выборки телефонов
Отправлено: stix от 22 Апреля 2013, 09:46:50
перепиши select
Название: Re: Запрос для выборки телефонов
Отправлено: Efendy от 22 Апреля 2013, 10:22:09
Допполя в Н+ проще чем в Н50, это обычные поля таблицы data0 select uid, _adr_telefon from data0; select d._adr_telefon, u.fio from data0 d join users u on d.uid=u.id limit 1;
Название: Re: Запрос для выборки телефонов
Отправлено: poxy. от 22 Апреля 2013, 10:28:23
Спасибо, еще вопрос, как в файл вывести телефоны?
Название: Re: Запрос для выборки телефонов
Отправлено: 0xbad0c0d3 от 22 Апреля 2013, 12:53:52
mysql> help select; Name: 'SELECT' Description: Syntax: SELECT [ALL | DISTINCT | DISTINCTROW ] [HIGH_PRIORITY] [STRAIGHT_JOIN] [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT] [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS] select_expr [, select_expr ...] [FROM table_references [WHERE where_condition] [GROUP BY {col_name | expr | position} [ASC | DESC], ... [WITH ROLLUP]] [HAVING where_condition] [ORDER BY {col_name | expr | position} [ASC | DESC], ...] [LIMIT {[offset,] row_count | row_count OFFSET offset}] [PROCEDURE procedure_name(argument_list)] [INTO OUTFILE 'file_name' export_options | INTO DUMPFILE 'file_name' | INTO var_name [, var_name]] [FOR UPDATE | LOCK IN SHARE MODE]]
SELECT is used to retrieve rows selected from one or more tables, and can include UNION statements and subqueries. See [HELP UNION], and http://dev.mysql.com/doc/refman/5.0/en/subqueries.html.
The most commonly used clauses of SELECT statements are these:
o Each select_expr indicates a column that you want to retrieve. There must be at least one select_expr.
o table_references indicates the table or tables from which to retriev rows. Its syntax is described in [HELP JOIN].
o The WHERE clause, if given, indicates the condition or conditions that rows must satisfy to be selected. where_condition is an expression that evaluates to true for each row to be selected. The statement selects all rows if there is no WHERE clause.
In the WHERE expression, you can use any of the functions and operators that MySQL supports, except for aggregate (summary) functions. See http://dev.mysql.com/doc/refman/5.0/en/expressions.html, and http://dev.mysql.com/doc/refman/5.0/en/functions.html.
SELECT can also be used to retrieve rows computed without reference to any table.
URL: http://dev.mysql.com/doc/refman/5.0/en/select.html
mysql>
Название: Re: Запрос для выборки телефонов
Отправлено: versus от 22 Апреля 2013, 14:12:31
Вы жестокий и безсердечный, ведь есть же список магниц ^W забаненых в гугле, может быть в доке есть что то более дружелюбное? Например, http://dev.mysql.com/doc/refman/5.5/en/select-into.html
Название: Re: Запрос для выборки телефонов
Отправлено: poxy. от 22 Апреля 2013, 18:32:36
Спасибо
|